mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-12-15 08:20:16 +08:00
Don't tab-complete COMMENT ON ... IS with IS.
Ian Barwick
This commit is contained in:
parent
72dd233d3e
commit
c168c88577
@ -2130,12 +2130,13 @@ psql_completion(const char *text, int start, int end)
|
|||||||
{
|
{
|
||||||
COMPLETE_WITH_QUERY(Query_for_list_of_event_triggers);
|
COMPLETE_WITH_QUERY(Query_for_list_of_event_triggers);
|
||||||
}
|
}
|
||||||
else if ((pg_strcasecmp(prev4_wd, "COMMENT") == 0 &&
|
else if (((pg_strcasecmp(prev4_wd, "COMMENT") == 0 &&
|
||||||
pg_strcasecmp(prev3_wd, "ON") == 0) ||
|
pg_strcasecmp(prev3_wd, "ON") == 0) ||
|
||||||
(pg_strcasecmp(prev5_wd, "COMMENT") == 0 &&
|
(pg_strcasecmp(prev5_wd, "COMMENT") == 0 &&
|
||||||
pg_strcasecmp(prev4_wd, "ON") == 0) ||
|
pg_strcasecmp(prev4_wd, "ON") == 0) ||
|
||||||
(pg_strcasecmp(prev6_wd, "COMMENT") == 0 &&
|
(pg_strcasecmp(prev6_wd, "COMMENT") == 0 &&
|
||||||
pg_strcasecmp(prev5_wd, "ON") == 0))
|
pg_strcasecmp(prev5_wd, "ON") == 0)) &&
|
||||||
|
pg_strcasecmp(prev_wd, "IS") != 0)
|
||||||
COMPLETE_WITH_CONST("IS");
|
COMPLETE_WITH_CONST("IS");
|
||||||
|
|
||||||
/* COPY */
|
/* COPY */
|
||||||
|
Loading…
Reference in New Issue
Block a user