mirror of
https://github.com/postgres/postgres.git
synced 2026-03-02 13:24:01 -05:00
Remove silly completion for "DELETE FROM tabname ...".
psql offered USING, WHERE, and SET in this context, but SET is not a valid
possibility here. Seems to have been a thinko in commit f5ab0a14ea
which added DELETE's USING option.
This commit is contained in:
parent
09b7abc278
commit
06d4fabfff
1 changed files with 1 additions and 1 deletions
|
|
@ -2368,7 +2368,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);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue