Re: BUG #15724: Can't create foreign table as partition

Поиск
Список
Период
Сортировка
От Etsuro Fujita
Тема Re: BUG #15724: Can't create foreign table as partition
Дата
Msg-id CAPmGK154LpQ=-R0YWu==Q99zfmx3TBAAdJORVcG8mAo7h1sW5g@mail.gmail.com
обсуждение исходный текст
Ответ на RE: BUG #15724: Can't create foreign table as partition  (Stepan Yankevych <Stepan_Yankevych@epam.com>)
Список pgsql-bugs
On Wed, Sep 25, 2019 at 4:16 PM Stepan Yankevych
<Stepan_Yankevych@epam.com> wrote:
> As far as I can see  the issue has been fixed with following resolution
> Ignore partitions that are foreign tables when creating indexes on partitioned tables (Álvaro Herrera)
> Previously an error was thrown on encountering a foreign-table partition, but that's unhelpful and doesn't protect
againstany actual problem. 

That's right.

> But I still can't create Pk on partitioned table
>
> See details:
> SELECT version();
> PostgreSQL 11.5 on x86_64-pc-linux-gnu, compiled by gcc (GCC) 4.8.5 20150623 (Red Hat 4.8.5-36), 64-bit
>
> ALTER TABLE fix_capture.fix_message_json ADD CONSTRAINT fix_message_json_pk PRIMARY KEY (fix_message_id,date_id);
> SQL Error [42809]: ERROR: cannot create unique index on partitioned table "fix_message_json"
>   Detail: Table "fix_message_json" contains partitions that are foreign tables.
>
> Have I missed something?

Unfortunately, that is still a restriction: it's allowed to create
regular indexes, but not unique or primary key indexes [1].

Best regards,
Etsuro Fujita

[1] https://git.postgresql.org/gitweb/?p=postgresql.git;a=commit;h=55ed3defc966cf718fe1e8c0efe964580bb23351



В списке pgsql-bugs по дате отправления:

Предыдущее
От: PG Bug reporting form
Дата:
Сообщение: BUG #16021: Can create Pk on partitioned table with foreign table as partition
Следующее
От: Etsuro Fujita
Дата:
Сообщение: Re: BUG #16021: Can create Pk on partitioned table with foreign tableas partition