mirror of
https://github.com/postgres/postgres.git
synced 2025-07-12 21:01:52 +03:00
Implement IMPORT FOREIGN SCHEMA.
This command provides an automated way to create foreign table definitions that match remote tables, thereby reducing tedium and chances for error. In this patch, we provide the necessary core-server infrastructure and implement the feature fully in the postgres_fdw foreign-data wrapper. Other wrappers will throw a "feature not supported" error until/unless they are updated. Ronan Dunklau and Michael Paquier, additional work by me
This commit is contained in:
@ -876,8 +876,9 @@ psql_completion(const char *text, int start, int end)
|
||||
static const char *const sql_commands[] = {
|
||||
"ABORT", "ALTER", "ANALYZE", "BEGIN", "CHECKPOINT", "CLOSE", "CLUSTER",
|
||||
"COMMENT", "COMMIT", "COPY", "CREATE", "DEALLOCATE", "DECLARE",
|
||||
"DELETE FROM", "DISCARD", "DO", "DROP", "END", "EXECUTE", "EXPLAIN", "FETCH",
|
||||
"GRANT", "INSERT", "LISTEN", "LOAD", "LOCK", "MOVE", "NOTIFY", "PREPARE",
|
||||
"DELETE FROM", "DISCARD", "DO", "DROP", "END", "EXECUTE", "EXPLAIN",
|
||||
"FETCH", "GRANT", "IMPORT", "INSERT", "LISTEN", "LOAD", "LOCK",
|
||||
"MOVE", "NOTIFY", "PREPARE",
|
||||
"REASSIGN", "REFRESH", "REINDEX", "RELEASE", "RESET", "REVOKE", "ROLLBACK",
|
||||
"SAVEPOINT", "SECURITY LABEL", "SELECT", "SET", "SHOW", "START",
|
||||
"TABLE", "TRUNCATE", "UNLISTEN", "UPDATE", "VACUUM", "VALUES", "WITH",
|
||||
@ -2947,6 +2948,13 @@ psql_completion(const char *text, int start, int end)
|
||||
pg_strcasecmp(prev_wd, "GROUP") == 0)
|
||||
COMPLETE_WITH_CONST("BY");
|
||||
|
||||
/* IMPORT FOREIGN SCHEMA */
|
||||
else if (pg_strcasecmp(prev_wd, "IMPORT") == 0)
|
||||
COMPLETE_WITH_CONST("FOREIGN SCHEMA");
|
||||
else if (pg_strcasecmp(prev2_wd, "IMPORT") == 0 &&
|
||||
pg_strcasecmp(prev_wd, "FOREIGN") == 0)
|
||||
COMPLETE_WITH_CONST("SCHEMA");
|
||||
|
||||
/* INSERT */
|
||||
/* Complete INSERT with "INTO" */
|
||||
else if (pg_strcasecmp(prev_wd, "INSERT") == 0)
|
||||
|
Reference in New Issue
Block a user