gpt4 book ai didi

postgresql - 国外数据包装器fdw_postgres能否处理PostGIS的GEOMETRY数据类型?

转载 作者:行者123 更新时间:2023-11-29 11:42:51 36 4
gpt4 key购买 nike

我正在通过 fdw_postgres 从不同的数据库访问数据。它运作良好:

CREATE FOREIGN TABLE fdw_table 
(
name TEXT,
area double precision,
use TEXT,
geom GEOMETRY
)
SERVER foreign_db
OPTIONS (schema_name 'schema_A', table_name 'table_B')

但是,当我查询 fdw_table 的 data_type 时,我得到以下结果:
姓名文字
面积 double
使用文本
geom 用户定义

fdw_postgres 不能处理 PostGIS 的 GEOMETRY 数据类型吗? USER-DEFINED 在这种情况下是什么意思?

最佳答案

来自documentationdata_type 列上:

Data type of the column, if it is a built-in type, or ARRAY if it is some array (in that case, see the view element_types), else USER-DEFINED (in that case, the type is identified in udt_name and associated columns).

所以这不是外籍家政 worker 特有的;您会看到物理表的相同定义。

postgres_fdw 可以很好地处理自定义数据类型,但目前有 one caveat : 如果您使用涉及用户定义类型的 WHERE 条件查询外部表,它不会将此条件推送到外部服务器。

换句话说,如果您的 WHERE 子句仅引用内置类型,例如:

SELECT *
FROM fdw_table
WHERE name = $1

... 然后 WHERE 子句将被发送到外部服务器,并且只检索匹配的行。但是当涉及到用户定义的类型时,例如:

SELECT *
FROM fdw_table
WHERE geom = $1

...然后从外部服务器检索整个表,并在本地执行过滤。

Postgres 9.6将通过允许您将扩展列表附加到外部服务器对象来解决此问题。

关于postgresql - 国外数据包装器fdw_postgres能否处理PostGIS的GEOMETRY数据类型?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37734170/

36 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com