Skip to content

Commit 9c5b9a2

Browse files
committed
Do pre-release housekeeping on catalog data.
Run renumber_oids.pl to move high-numbered OIDs down, as per pre-beta tasks specified by RELEASE_CHANGES. For reference, the command was ./renumber_oids.pl --first-mapped-oid 8000 --target-oid 6300 This should have been done prior to beta1, but it was forgotten. This will ensure we get the correct numbering for beta2 onward.
1 parent 0ebd242 commit 9c5b9a2

File tree

5 files changed

+85
-85
lines changed

5 files changed

+85
-85
lines changed

src/include/catalog/catversion.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,6 @@
5757
*/
5858

5959
/* yyyymmddN */
60-
#define CATALOG_VERSION_NO 202506251
60+
#define CATALOG_VERSION_NO 202506291
6161

6262
#endif

src/include/catalog/pg_authid.dat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@
9999
rolcreaterole => 'f', rolcreatedb => 'f', rolcanlogin => 'f',
100100
rolreplication => 'f', rolbypassrls => 'f', rolconnlimit => '-1',
101101
rolpassword => '_null_', rolvaliduntil => '_null_' },
102-
{ oid => '8916', oid_symbol => 'ROLE_PG_SIGNAL_AUTOVACUUM_WORKER',
102+
{ oid => '6392', oid_symbol => 'ROLE_PG_SIGNAL_AUTOVACUUM_WORKER',
103103
rolname => 'pg_signal_autovacuum_worker', rolsuper => 'f', rolinherit => 't',
104104
rolcreaterole => 'f', rolcreatedb => 'f', rolcanlogin => 'f',
105105
rolreplication => 'f', rolbypassrls => 'f', rolconnlimit => '-1',

src/include/catalog/pg_collation.dat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
descr => 'sorts by Unicode code point; Unicode and POSIX character semantics',
3434
collname => 'pg_c_utf8', collprovider => 'b', collencoding => '6',
3535
colllocale => 'C.UTF-8', collversion => '1' },
36-
{ oid => '9535',
36+
{ oid => '6411',
3737
descr => 'sorts by Unicode code point; Unicode character semantics',
3838
collname => 'pg_unicode_fast', collprovider => 'b', collencoding => '6',
3939
colllocale => 'PG_UNICODE_FAST', collversion => '1' },

src/include/catalog/pg_index.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ CATALOG(pg_index,2610,IndexRelationId) BKI_SCHEMA_MACRO
6969
*/
7070
typedef FormData_pg_index *Form_pg_index;
7171

72-
DECLARE_TOAST_WITH_MACRO(pg_index, 8149, 8150, PgIndexToastTable, PgIndexToastIndex);
72+
DECLARE_TOAST_WITH_MACRO(pg_index, 6351, 6352, PgIndexToastTable, PgIndexToastIndex);
7373

7474
DECLARE_INDEX(pg_index_indrelid_index, 2678, IndexIndrelidIndexId, pg_index, btree(indrelid oid_ops));
7575
DECLARE_UNIQUE_INDEX_PKEY(pg_index_indexrelid_index, 2679, IndexRelidIndexId, pg_index, btree(indexrelid oid_ops));

0 commit comments

Comments
 (0)