diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/bin/psql/tab-complete.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/psql/tab-complete.c b/src/bin/psql/tab-complete.c index 8f9ab696106..ade87a75e1b 100644 --- a/src/bin/psql/tab-complete.c +++ b/src/bin/psql/tab-complete.c @@ -2003,7 +2003,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); } |