mirror of
https://github.com/postgres/postgres.git
synced 2025-08-28 18:48:04 +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:
@@ -399,6 +399,47 @@ GetFdwRoutineForRelation(Relation relation, bool makecopy)
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* IsImportableForeignTable - filter table names for IMPORT FOREIGN SCHEMA
|
||||
*
|
||||
* Returns TRUE if given table name should be imported according to the
|
||||
* statement's import filter options.
|
||||
*/
|
||||
bool
|
||||
IsImportableForeignTable(const char *tablename,
|
||||
ImportForeignSchemaStmt *stmt)
|
||||
{
|
||||
ListCell *lc;
|
||||
|
||||
switch (stmt->list_type)
|
||||
{
|
||||
case FDW_IMPORT_SCHEMA_ALL:
|
||||
return true;
|
||||
|
||||
case FDW_IMPORT_SCHEMA_LIMIT_TO:
|
||||
foreach(lc, stmt->table_list)
|
||||
{
|
||||
RangeVar *rv = (RangeVar *) lfirst(lc);
|
||||
|
||||
if (strcmp(tablename, rv->relname) == 0)
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
|
||||
case FDW_IMPORT_SCHEMA_EXCEPT:
|
||||
foreach(lc, stmt->table_list)
|
||||
{
|
||||
RangeVar *rv = (RangeVar *) lfirst(lc);
|
||||
|
||||
if (strcmp(tablename, rv->relname) == 0)
|
||||
return false;
|
||||
}
|
||||
return true;
|
||||
}
|
||||
return false; /* shouldn't get here */
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* deflist_to_tuplestore - Helper function to convert DefElem list to
|
||||
* tuplestore usable in SRF.
|
||||
|
Reference in New Issue
Block a user