Low OIDs (< 16384) when creating databases in single user mode - Mailing list pgsql-general

From Arnold Hendriks
Subject Low OIDs (< 16384) when creating databases in single user mode
Date
Msg-id CADZkmHUiBeSdm+HZfQ83KPpB2PJ6aBNARjZ-Z3O99-9DosFOUw@mail.gmail.com
Whole thread Raw
Responses Re: Low OIDs (< 16384) when creating databases in single user mode
List pgsql-general
When creating a new database using the following script:

PGBINDIR="/opt/homebrew/Cellar/postgresql@16/16.9/bin/"
rm -rf /tmp/db
"$PGBINDIR/initdb" -U postgres -D /tmp/db --auth-local=trust
--encoding 'UTF-8' --locale='C'
"$PGBINDIR/postgres" --single -D /tmp/db postgres <<HERE
CREATE DATABASE test;
select oid,datname from pg_database;
HERE

The id 14022 is assigned. This then confuses pgAdmin which expects
databases to have an ID >= 16384 (unless named postgres/edb)

Am I wrong in creating the database this way? Or is pgAdmin wrong in
assuming ids have to be >=16384 ?

Is there a way to ensure new IDs are in the usual range when starting
in in single user mode?



pgsql-general by date:

Previous
From: Durgamahesh Manne
Date:
Subject: Regarding fillfactor use case for only delete ops
Next
From: Laurenz Albe
Date:
Subject: Re: Regarding fillfactor use case for only delete ops