Postgres 11 FDW找不到分区表

问题描述 投票:1回答:1

[尝试使用postgres 11外来数据包装器访问分区表。我可以访问基础表,但不能访问该表。

create schema foo;

CREATE TABLE foo.test1 (
    city_id         int not null,
    logdate         date not null,
    peaktemp        int,
    unitsales       int
) PARTITION BY RANGE (logdate);

CREATE TABLE foo.measurement1_y2006m02 PARTITION OF foo.test1
    FOR VALUES FROM ('2006-02-01') TO ('2006-03-01');

CREATE TABLE foo.measurement1_y2006m03 PARTITION OF foo.test1
    FOR VALUES FROM ('2006-03-01') TO ('2006-04-01');

insert into foo.measurement1_y2006m02 values (1,'2006-02-15',1,1);
insert into foo.measurement1_y2006m03 values (2,'2006-03-15',2,2);

select * from foo.test1;

这似乎很好。然后,我创建一个指向此链接:

DROP SCHEMA IF EXISTS fdw_foo CASCADE;
CREATE SCHEMA fdw_foo;
IMPORT FOREIGN SCHEMA foo
    FROM SERVER myserver INTO fdw_foo;

此作品:

select * from fdw_foo.measurement1_y2006m02;

这不是

select * from fdw_foo.test1;

ERROR: relation "fdw_foo.test1" does not exist

有什么想法吗?

postgresql database-partitioning foreign-data-wrapper postgres-fdw
1个回答
0
投票

这是您应该报告的错误。

作为解决方法,您可以自己创建外部表:

CREATE FOREIGN TABLE fdw_foo.test1 (
    city_id         int not null,
    logdate         date not null,
    peaktemp        int,
    unitsales       int
) SERVER myserver
OPTIONS (schema_name 'foo', table_name 'test1');
© www.soinside.com 2019 - 2024. All rights reserved.