mirror of
https://github.com/postgres/postgres.git
synced 2025-07-31 22:04:40 +03:00
Tab-complete ALTER PUBLICATION ADD TABLE with list of tables
This has been posted as part of the column-list feature for logical replication since [1], but it's not really related to that. [1] https://postgr.es/m/202112131747.cmlstdewm4kh@alvherre.pgsql
This commit is contained in:
@ -1692,6 +1692,12 @@ psql_completion(const char *text, int start, int end)
|
||||
/* ALTER PUBLICATION <name> ADD */
|
||||
else if (Matches("ALTER", "PUBLICATION", MatchAny, "ADD"))
|
||||
COMPLETE_WITH("ALL TABLES IN SCHEMA", "TABLE");
|
||||
else if (Matches("ALTER", "PUBLICATION", MatchAny, "ADD|SET", "TABLE") ||
|
||||
(HeadMatches("ALTER", "PUBLICATION", MatchAny, "ADD|SET", "TABLE") &&
|
||||
ends_with(prev_wd, ',')))
|
||||
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_tables, NULL);
|
||||
else if (HeadMatches("ALTER", "PUBLICATION", MatchAny, "ADD|SET", "TABLE"))
|
||||
COMPLETE_WITH(",");
|
||||
/* ALTER PUBLICATION <name> DROP */
|
||||
else if (Matches("ALTER", "PUBLICATION", MatchAny, "DROP"))
|
||||
COMPLETE_WITH("ALL TABLES IN SCHEMA", "TABLE");
|
||||
|
Reference in New Issue
Block a user