pg_dump not properly dumping unlogged partitioned tables - Mailing list pgsql-novice

From Quentin de Metz
Subject pg_dump not properly dumping unlogged partitioned tables
Date
Msg-id 75c60649-7361-47c0-a39a-1e5574fb161c@app.fastmail.com
Whole thread
Responses Re: pg_dump not properly dumping unlogged partitioned tables
List pgsql-novice
Hello,

It seems as if pg_dump is not properly dumping the UNLOGGED flag on partitioned tables.

Please find a reproduction script:

$ createdb foobar
$ psql postgresql://localhost:5432/foobar
# SHOW server_version;
         server_version
---------------------------------
 17.10 (Debian 17.10-1.pgdg12+1)
# CREATE UNLOGGED TABLE zde (id bigint) PARTITION BY RANGE(id);
[...]
$ pg_dump --version
pg_dump (PostgreSQL) 18.4
$ pg_dump --no-data 'dbname=foobar'
[...]
CREATE TABLE public.zde (
    id bigint
)
PARTITION BY RANGE (id);
[...]

Kind regards,
Quentin de Metz



pgsql-novice by date:

Previous
From: "Subramanian,Ramachandran"
Date:
Subject: pg_upgrade Error- Kindly help
Next
From: Steve Baldwin
Date:
Subject: Re: pg_dump not properly dumping unlogged partitioned tables