compatibility issue - problem with migrating from Postgres 11

Поиск
Список
Период
Сортировка
От Pavel Stehule
Тема compatibility issue - problem with migrating from Postgres 11
Дата
Msg-id CAFj8pRDLYjvGAwaFx+nYPzaHCNgjiU0PV67J-LiyiFFo1OWtVQ@mail.gmail.com
обсуждение исходный текст
Список pgsql-hackers
Hi

my customer reported an issue related to unsupported TABLESPACE pg_default for partitioned table:

postgres=# CREATE TABLE IF NOT EXISTS foo2
    (
        data bytea,
        guid character varying(255) COLLATE pg_catalog."default" NOT NULL,
        part date NOT NULL,
        retention_period integer,
        CONSTRAINT document_data_bytea_pkey1 PRIMARY KEY (guid, part)
    ) PARTITION BY RANGE (part)
    WITH (
        OIDS = FALSE
    )
    TABLESPACE pg_default;
ERROR:  cannot specify default tablespace for partitioned relations


Are there some plans to fix this issue?

Regards

Pavel

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

Предыдущее
От: Bharath Rupireddy
Дата:
Сообщение: postgres_fdw - make cached connection functions tests meaningful
Следующее
От: Alexander Korotkov
Дата:
Сообщение: Re: PG 14 release notes, first draft