diff --git a/src/bin/psql/tab-complete.c b/src/bin/psql/tab-complete.c
index 63424c502b4898d8b23f970bbf6cac5c1c874288..3d6ed8da2079236e87bf49b1e0e6ec6fde7bb462 100644
--- a/src/bin/psql/tab-complete.c
+++ b/src/bin/psql/tab-complete.c
@@ -2096,7 +2096,7 @@ psql_completion(char *text, int start, int end)
 			 pg_strcasecmp(prev2_wd, "FROM") == 0)
 	{
 		static const char *const list_DELETE[] =
-		{"USING", "WHERE", "SET", NULL};
+		{"USING", "WHERE", NULL};
 
 		COMPLETE_WITH_LIST(list_DELETE);
 	}