ALTER FOREIGN TABLE modifies a foreign table.
None
1 2 | ALTER FOREIGN TABLE [ IF EXISTS ] table_name OPTIONS ( {[ ADD | SET | DROP ] option ['value']}[, ... ]); |
1 2 | ALTER FOREIGN TABLE [ IF EXISTS ] tablename OWNER TO new_owner; |
Specifies the name of an existing foreign table to be modified.
Value range: an existing foreign table name.
Name of the option to be modified.
Value range: See Parameter Description in CREATE FOREIGN TABLE.
Specifies the new value of option.
Modify the customer_ft attribute of the foreign table. Delete the mode option.
1 | ALTER FOREIGN TABLE customer_ft options(drop mode); |