PostgreSQL - 如何在创建外部 table 时导入自定义数据类型(使用 postgres-fdw)?
PostgreSQL - How to import custom data type when creating foreign table (using postgres-fdw)?
我正在尝试使用 postgresql_fdw
(https://www.postgresql.org/docs/current/postgres-fdw.html) 创建外部 table 视图。
尝试 IMPORT FOREIGN SCHEMA public FROM SERVER replica_db1 INTO db1
时,它报告
type "public.custom_type" does not exist
与 https://www.postgresql.org/docs/current/postgres-fdw.html
相同
我想知道,如何自动将自定义数据类型复制到目标数据库中?
谢谢!
我正在尝试使用 postgresql_fdw
(https://www.postgresql.org/docs/current/postgres-fdw.html) 创建外部 table 视图。
尝试 IMPORT FOREIGN SCHEMA public FROM SERVER replica_db1 INTO db1
时,它报告
type "public.custom_type" does not exist
与 https://www.postgresql.org/docs/current/postgres-fdw.html
相同我想知道,如何自动将自定义数据类型复制到目标数据库中?
谢谢!