From: | Sindhu S <sindhusanti(at)gmail(dot)com> |
---|---|
To: | pgsql-bugs(at)lists(dot)postgresql(dot)org |
Subject: | Report Postgres Bug - Unlogged table sequence |
Date: | 2024-08-19 05:47:59 |
Message-ID: | CALRZP9igmD0CYDTJsZmi4RZYntMVCuvHWj0q-K+PHuyu9N40EA@mail.gmail.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-bugs |
In 15.7 and 16.3 Release Notes, I found a change to an unlogged table's
sequence.
Make ALTER TABLE ... ADD COLUMN create identity/serial sequences with the
same persistence as their owning tables (Peter Eisentraut)
CREATE UNLOGGED TABLE will make any owned sequences be unlogged too. ALTER
TABLE missed that consideration, so that an added identity column would
have a logged sequence, which seems pointless.
Major version upgrade to 15.7 or 16.3 is failing on pg_restore step with
following error,
pg_restore: creating TABLE "public.X"
pg_restore: creating SEQUENCE "public.X_id_seq"
pg_restore: while PROCESSING TOC:
pg_restore: from TOC entry 200; 1259 <NUMBER> SEQUENCE X_id_seq
sindhu.selvaraj
pg_restore: error: could not execute query: ERROR: unexpected request for
new relfilenode in binary upgrade mode
Command was:
-- For binary upgrade, must preserve pg_class oids and relfilenodes
SELECT
pg_catalog.binary_upgrade_set_next_heap_pg_class_oid('<NUMBER>'::pg_catalog.oid);
SELECT
pg_catalog.binary_upgrade_set_next_heap_relfilenode('<NUMBER>'::pg_catalog.oid);
ALTER TABLE "public"."X" ALTER COLUMN "id" ADD GENERATED BY DEFAULT AS
IDENTITY (
SEQUENCE NAME "public"."X_id_seq"
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
ALTER SEQUENCE "public"."X_id_seq" SET LOGGED;
This has been spotted in local postgres installed in MAC as well as in AWS
RDS.
We had to change the unlogged table to logged and then upgrade.
I am reporting this as a bug. Please keep us updated.
Regards,
Sindhu
From | Date | Subject | |
---|---|---|---|
Next Message | Mathias, Renci | 2024-08-19 07:19:34 | RE: BUG #18569: Memory leak in Postgres Enterprise server |
Previous Message | Alvaro Herrera | 2024-08-19 01:20:06 | Re: BUG #18582: fixed range of search for empty slot in SLRU |