Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit1447244

Browse files
committed
Do pre-release housekeeping on catalog data.
Run renumber_oids.pl to move high-numbered OIDs down, as per pre-betatasks specified by RELEASE_CHANGES. For reference, the command was./renumber_oids.pl --first-mapped-oid 8000 --target-oid 6150
1 parentdef5b06 commit1447244

File tree

6 files changed

+55
-55
lines changed

6 files changed

+55
-55
lines changed

‎src/include/catalog/catversion.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,6 @@
5353
*/
5454

5555
/*yyyymmddN */
56-
#defineCATALOG_VERSION_NO202105091
56+
#defineCATALOG_VERSION_NO202105121
5757

5858
#endif

‎src/include/catalog/pg_authid.dat

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,17 +24,17 @@
2424
rolcreaterole => 't', rolcreatedb => 't', rolcanlogin => 't',
2525
rolreplication => 't', rolbypassrls => 't', rolconnlimit => '-1',
2626
rolpassword => '_null_', rolvaliduntil => '_null_' },
27-
{ oid => '8778', oid_symbol => 'ROLE_PG_DATABASE_OWNER',
27+
{ oid => '6171', oid_symbol => 'ROLE_PG_DATABASE_OWNER',
2828
rolname => 'pg_database_owner', rolsuper => 'f', rolinherit => 't',
2929
rolcreaterole => 'f', rolcreatedb => 'f', rolcanlogin => 'f',
3030
rolreplication => 'f', rolbypassrls => 'f', rolconnlimit => '-1',
3131
rolpassword => '_null_', rolvaliduntil => '_null_' },
32-
{ oid => '9274', oid_symbol => 'ROLE_PG_READ_ALL_DATA',
32+
{ oid => '6181', oid_symbol => 'ROLE_PG_READ_ALL_DATA',
3333
rolname => 'pg_read_all_data', rolsuper => 'f', rolinherit => 't',
3434
rolcreaterole => 'f', rolcreatedb => 'f', rolcanlogin => 'f',
3535
rolreplication => 'f', rolbypassrls => 'f', rolconnlimit => '-1',
3636
rolpassword => '_null_', rolvaliduntil => '_null_' },
37-
{ oid => '9275', oid_symbol => 'ROLE_PG_WRITE_ALL_DATA',
37+
{ oid => '6182', oid_symbol => 'ROLE_PG_WRITE_ALL_DATA',
3838
rolname => 'pg_write_all_data', rolsuper => 'f', rolinherit => 't',
3939
rolcreaterole => 'f', rolcreatedb => 'f', rolcanlogin => 'f',
4040
rolreplication => 'f', rolbypassrls => 'f', rolconnlimit => '-1',

‎src/include/catalog/pg_collation.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ CATALOG(pg_collation,3456,CollationRelationId)
5555
*/
5656
typedefFormData_pg_collation*Form_pg_collation;
5757

58-
DECLARE_TOAST(pg_collation,8888,8889);
58+
DECLARE_TOAST(pg_collation,6175,6176);
5959

6060
DECLARE_UNIQUE_INDEX(pg_collation_name_enc_nsp_index,3164,onpg_collationusingbtree(collnamename_ops,collencodingint4_ops,collnamespaceoid_ops));
6161
#defineCollationNameEncNspIndexId3164

‎src/include/catalog/pg_opfamily.dat

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@
7676
opfmethod => 'hash', opfname => 'oidvector_ops' },
7777
{ oid => '2994',
7878
opfmethod => 'btree', opfname => 'record_ops' },
79-
{ oid => '9611',
79+
{ oid => '6194',
8080
opfmethod => 'hash', opfname => 'record_ops' },
8181
{ oid => '3194',
8282
opfmethod => 'btree', opfname => 'record_image_ops' },
@@ -302,7 +302,7 @@
302302
opfmethod => 'btree', opfname => 'multirange_ops' },
303303
{ oid => '4225',
304304
opfmethod => 'hash', opfname => 'multirange_ops' },
305-
{ oid => '8021',
305+
{ oid => '6158',
306306
opfmethod => 'gist', opfname => 'multirange_ops' },
307307

308308
]

‎src/include/catalog/pg_proc.dat

Lines changed: 42 additions & 42 deletions
Original file line numberDiff line numberDiff line change
@@ -1446,7 +1446,7 @@
14461446
{ oid => '752', descr => 'substitute portion of string',
14471447
proname => 'overlay', prorettype => 'bytea',
14481448
proargtypes => 'bytea bytea int4', prosrc => 'byteaoverlay_no_len' },
1449-
{ oid => '8436', descr => 'number of set bits',
1449+
{ oid => '6163', descr => 'number of set bits',
14501450
proname => 'bit_count', prorettype => 'int8', proargtypes => 'bytea',
14511451
prosrc => 'bytea_bit_count' },
14521452

@@ -1570,11 +1570,11 @@
15701570
{ oid => '376', descr => 'split delimited text, with null string',
15711571
proname => 'string_to_array', proisstrict => 'f', prorettype => '_text',
15721572
proargtypes => 'text text text', prosrc => 'text_to_array_null' },
1573-
{ oid => '8432', descr => 'split delimited text',
1573+
{ oid => '6160', descr => 'split delimited text',
15741574
proname => 'string_to_table', prorows => '1000', proisstrict => 'f',
15751575
proretset => 't', prorettype => 'text', proargtypes => 'text text',
15761576
prosrc => 'text_to_table' },
1577-
{ oid => '8433', descr => 'split delimited text, with null string',
1577+
{ oid => '6161', descr => 'split delimited text, with null string',
15781578
proname => 'string_to_table', prorows => '1000', proisstrict => 'f',
15791579
proretset => 't', prorettype => 'text', proargtypes => 'text text text',
15801580
prosrc => 'text_to_table_null' },
@@ -1666,7 +1666,7 @@
16661666
proname => 'width_bucket', prorettype => 'int4',
16671667
proargtypes => 'anycompatible anycompatiblearray',
16681668
prosrc => 'width_bucket_array' },
1669-
{ oid => '8819', descr => 'remove last N elements of array',
1669+
{ oid => '6172', descr => 'remove last N elements of array',
16701670
proname => 'trim_array', prorettype => 'anyarray',
16711671
proargtypes => 'anyarray int4', prosrc => 'trim_array' },
16721672
{ oid => '3816', descr => 'array typanalyze',
@@ -2339,13 +2339,13 @@
23392339
{ oid => '1171', descr => 'extract field from timestamp with time zone',
23402340
proname => 'date_part', provolatile => 's', prorettype => 'float8',
23412341
proargtypes => 'text timestamptz', prosrc => 'timestamptz_part' },
2342-
{ oid => '9983', descr => 'extract field from timestamp with time zone',
2342+
{ oid => '6203', descr => 'extract field from timestamp with time zone',
23432343
proname => 'extract', provolatile => 's', prorettype => 'numeric',
23442344
proargtypes => 'text timestamptz', prosrc => 'extract_timestamptz' },
23452345
{ oid => '1172', descr => 'extract field from interval',
23462346
proname => 'date_part', prorettype => 'float8',
23472347
proargtypes => 'text interval', prosrc => 'interval_part' },
2348-
{ oid => '9984', descr => 'extract field from interval',
2348+
{ oid => '6204', descr => 'extract field from interval',
23492349
proname => 'extract', prorettype => 'numeric', proargtypes => 'text interval',
23502350
prosrc => 'extract_interval' },
23512351
{ oid => '1174', descr => 'convert date to timestamp with time zone',
@@ -2495,7 +2495,7 @@
24952495
{ oid => '1273', descr => 'extract field from time with time zone',
24962496
proname => 'date_part', prorettype => 'float8', proargtypes => 'text timetz',
24972497
prosrc => 'timetz_part' },
2498-
{ oid => '9981', descr => 'extract field from time with time zone',
2498+
{ oid => '6201', descr => 'extract field from time with time zone',
24992499
proname => 'extract', prorettype => 'numeric', proargtypes => 'text timetz',
25002500
prosrc => 'extract_timetz' },
25012501
{ oid => '1274',
@@ -2842,13 +2842,13 @@
28422842
{ oid => '1384', descr => 'extract field from date',
28432843
proname => 'date_part', prolang => 'sql', prorettype => 'float8',
28442844
proargtypes => 'text date', prosrc => 'see system_functions.sql' },
2845-
{ oid => '9979', descr => 'extract field from date',
2845+
{ oid => '6199', descr => 'extract field from date',
28462846
proname => 'extract', prorettype => 'numeric', proargtypes => 'text date',
28472847
prosrc => 'extract_date' },
28482848
{ oid => '1385', descr => 'extract field from time',
28492849
proname => 'date_part', prorettype => 'float8', proargtypes => 'text time',
28502850
prosrc => 'time_part' },
2851-
{ oid => '9980', descr => 'extract field from time',
2851+
{ oid => '6200', descr => 'extract field from time',
28522852
proname => 'extract', prorettype => 'numeric', proargtypes => 'text time',
28532853
prosrc => 'extract_time' },
28542854
{ oid => '1386',
@@ -3670,11 +3670,11 @@
36703670
proname => 'pg_get_statisticsobjdef', provolatile => 's',
36713671
prorettype => 'text', proargtypes => 'oid',
36723672
prosrc => 'pg_get_statisticsobjdef' },
3673-
{ oid => '8887', descr => 'extended statistics columns',
3673+
{ oid => '6174', descr => 'extended statistics columns',
36743674
proname => 'pg_get_statisticsobjdef_columns', provolatile => 's',
36753675
prorettype => 'text', proargtypes => 'oid',
36763676
prosrc => 'pg_get_statisticsobjdef_columns' },
3677-
{ oid => '8886', descr => 'extended statistics expressions',
3677+
{ oid => '6173', descr => 'extended statistics expressions',
36783678
proname => 'pg_get_statisticsobjdef_expressions', provolatile => 's',
36793679
prorettype => '_text', proargtypes => 'oid',
36803680
prosrc => 'pg_get_statisticsobjdef_expressions' },
@@ -3715,7 +3715,7 @@
37153715
proname => 'pg_get_function_arg_default', provolatile => 's',
37163716
prorettype => 'text', proargtypes => 'oid int4',
37173717
prosrc => 'pg_get_function_arg_default' },
3718-
{ oid => '9704', descr => 'function SQL body',
3718+
{ oid => '6197', descr => 'function SQL body',
37193719
proname => 'pg_get_function_sqlbody', provolatile => 's',
37203720
prorettype => 'text', proargtypes => 'oid',
37213721
prosrc => 'pg_get_function_sqlbody' },
@@ -3728,7 +3728,7 @@
37283728
proargnames => '{word,catcode,barelabel,catdesc,baredesc}',
37293729
prosrc => 'pg_get_keywords' },
37303730

3731-
{ oid => '8103', descr => 'list of catalog foreign key relationships',
3731+
{ oid => '6159', descr => 'list of catalog foreign key relationships',
37323732
proname => 'pg_get_catalog_foreign_keys', procost => '10', prorows => '250',
37333733
proretset => 't', provolatile => 's', prorettype => 'record',
37343734
proargtypes => '',
@@ -3904,7 +3904,7 @@
39043904
{ oid => '3033', descr => 'set bit',
39053905
proname => 'set_bit', prorettype => 'bit', proargtypes => 'bit int4 int4',
39063906
prosrc => 'bitsetbit' },
3907-
{ oid => '8435', descr => 'number of set bits',
3907+
{ oid => '6162', descr => 'number of set bits',
39083908
proname => 'bit_count', prorettype => 'int8', proargtypes => 'bit',
39093909
prosrc => 'bit_bit_count' },
39103910

@@ -5309,7 +5309,7 @@
53095309
proargmodes => '{o,o,o,o,o,o,o,o,o,o,o,o,o,o,o}',
53105310
proargnames => '{pid,status,receive_start_lsn,receive_start_tli,written_lsn,flushed_lsn,received_tli,last_msg_send_time,last_msg_receipt_time,latest_end_lsn,latest_end_time,slot_name,sender_host,sender_port,conninfo}',
53115311
prosrc => 'pg_stat_get_wal_receiver' },
5312-
{ oid => '8595', descr => 'statistics: information about replication slot',
5312+
{ oid => '6169', descr => 'statistics: information about replication slot',
53135313
proname => 'pg_stat_get_replication_slot', prorows => '1', proisstrict => 'f',
53145314
proretset => 't', provolatile => 's', proparallel => 'r',
53155315
prorettype => 'record', proargtypes => 'text',
@@ -5483,34 +5483,34 @@
54835483
proname => 'pg_stat_get_db_blk_write_time', provolatile => 's',
54845484
proparallel => 'r', prorettype => 'float8', proargtypes => 'oid',
54855485
prosrc => 'pg_stat_get_db_blk_write_time' },
5486-
{ oid => '9575', descr => 'statistics: session time, in milliseconds',
5486+
{ oid => '6185', descr => 'statistics: session time, in milliseconds',
54875487
proname => 'pg_stat_get_db_session_time', provolatile => 's',
54885488
proparallel => 'r', prorettype => 'float8', proargtypes => 'oid',
54895489
prosrc => 'pg_stat_get_db_session_time' },
5490-
{ oid => '9576', descr => 'statistics: session active time, in milliseconds',
5490+
{ oid => '6186', descr => 'statistics: session active time, in milliseconds',
54915491
proname => 'pg_stat_get_db_active_time', provolatile => 's',
54925492
proparallel => 'r', prorettype => 'float8', proargtypes => 'oid',
54935493
prosrc => 'pg_stat_get_db_active_time' },
5494-
{ oid => '9577',
5494+
{ oid => '6187',
54955495
descr => 'statistics: session idle in transaction time, in milliseconds',
54965496
proname => 'pg_stat_get_db_idle_in_transaction_time', provolatile => 's',
54975497
proparallel => 'r', prorettype => 'float8', proargtypes => 'oid',
54985498
prosrc => 'pg_stat_get_db_idle_in_transaction_time' },
5499-
{ oid => '9578', descr => 'statistics: total number of sessions',
5499+
{ oid => '6188', descr => 'statistics: total number of sessions',
55005500
proname => 'pg_stat_get_db_sessions', provolatile => 's', proparallel => 'r',
55015501
prorettype => 'int8', proargtypes => 'oid',
55025502
prosrc => 'pg_stat_get_db_sessions' },
5503-
{ oid => '9579',
5503+
{ oid => '6189',
55045504
descr => 'statistics: number of sessions disconnected by the client closing the network connection',
55055505
proname => 'pg_stat_get_db_sessions_abandoned', provolatile => 's',
55065506
proparallel => 'r', prorettype => 'int8', proargtypes => 'oid',
55075507
prosrc => 'pg_stat_get_db_sessions_abandoned' },
5508-
{ oid => '9580',
5508+
{ oid => '6190',
55095509
descr => 'statistics: number of sessions disconnected by fatal errors',
55105510
proname => 'pg_stat_get_db_sessions_fatal', provolatile => 's',
55115511
proparallel => 'r', prorettype => 'int8', proargtypes => 'oid',
55125512
prosrc => 'pg_stat_get_db_sessions_fatal' },
5513-
{ oid => '9581',
5513+
{ oid => '6191',
55145514
descr => 'statistics: number of sessions killed by administrative action',
55155515
proname => 'pg_stat_get_db_sessions_killed', provolatile => 's',
55165516
proparallel => 'r', prorettype => 'int8', proargtypes => 'oid',
@@ -5699,7 +5699,7 @@
56995699
descr => 'statistics: reset collected statistics for a single SLRU',
57005700
proname => 'pg_stat_reset_slru', proisstrict => 'f', provolatile => 'v',
57015701
prorettype => 'void', proargtypes => 'text', prosrc => 'pg_stat_reset_slru' },
5702-
{ oid => '8596',
5702+
{ oid => '6170',
57035703
descr => 'statistics: reset collected statistics for a single replication slot',
57045704
proname => 'pg_stat_reset_replication_slot', proisstrict => 'f',
57055705
provolatile => 'v', prorettype => 'void', proargtypes => 'text',
@@ -5825,10 +5825,10 @@
58255825
{ oid => '2015', descr => 'trim selected bytes from both ends of string',
58265826
proname => 'btrim', prorettype => 'bytea', proargtypes => 'bytea bytea',
58275827
prosrc => 'byteatrim' },
5828-
{ oid => '9612', descr => 'trim selected bytes from left end of string',
5828+
{ oid => '6195', descr => 'trim selected bytes from left end of string',
58295829
proname => 'ltrim', prorettype => 'bytea', proargtypes => 'bytea bytea',
58305830
prosrc => 'bytealtrim' },
5831-
{ oid => '9613', descr => 'trim selected bytes from right end of string',
5831+
{ oid => '6196', descr => 'trim selected bytes from right end of string',
58325832
proname => 'rtrim', prorettype => 'bytea', proargtypes => 'bytea bytea',
58335833
prosrc => 'byteartrim' },
58345834

@@ -5839,10 +5839,10 @@
58395839
proname => 'date_trunc', prorettype => 'timestamp',
58405840
proargtypes => 'text timestamp', prosrc => 'timestamp_trunc' },
58415841

5842-
{ oid => '8990', descr => 'bin timestamp into specified interval',
5842+
{ oid => '6177', descr => 'bin timestamp into specified interval',
58435843
proname => 'date_bin', prorettype => 'timestamp',
58445844
proargtypes => 'interval timestamp timestamp', prosrc => 'timestamp_bin' },
5845-
{ oid => '8993',
5845+
{ oid => '6178',
58465846
descr => 'bin timestamp with time zone into specified interval',
58475847
proname => 'date_bin', prorettype => 'timestamptz',
58485848
proargtypes => 'interval timestamptz timestamptz',
@@ -5851,7 +5851,7 @@
58515851
{ oid => '2021', descr => 'extract field from timestamp',
58525852
proname => 'date_part', prorettype => 'float8',
58535853
proargtypes => 'text timestamp', prosrc => 'timestamp_part' },
5854-
{ oid => '9982', descr => 'extract field from timestamp',
5854+
{ oid => '6202', descr => 'extract field from timestamp',
58555855
proname => 'extract', prorettype => 'numeric',
58565856
proargtypes => 'text timestamp', prosrc => 'extract_timestamp' },
58575857
{ oid => '2024', descr => 'convert date to timestamp',
@@ -6076,7 +6076,7 @@
60766076
prorettype => 'timestamptz', proargtypes => 'xid',
60776077
prosrc => 'pg_xact_commit_timestamp' },
60786078

6079-
{ oid => '8456',
6079+
{ oid => '6168',
60806080
descr => 'get commit timestamp and replication origin of a transaction',
60816081
proname => 'pg_xact_commit_timestamp_origin', provolatile => 'v',
60826082
prorettype => 'record', proargtypes => 'xid',
@@ -8058,7 +8058,7 @@
80588058
{ oid => '2237', descr => 'bitwise-or smallint aggregate',
80598059
proname => 'bit_or', prokind => 'a', proisstrict => 'f', prorettype => 'int2',
80608060
proargtypes => 'int2', prosrc => 'aggregate_dummy' },
8061-
{ oid => '8452', descr => 'bitwise-xor smallint aggregate',
8061+
{ oid => '6164', descr => 'bitwise-xor smallint aggregate',
80628062
proname => 'bit_xor', prokind => 'a', proisstrict => 'f',
80638063
prorettype => 'int2', proargtypes => 'int2', prosrc => 'aggregate_dummy' },
80648064
{ oid => '2238', descr => 'bitwise-and integer aggregate',
@@ -8067,7 +8067,7 @@
80678067
{ oid => '2239', descr => 'bitwise-or integer aggregate',
80688068
proname => 'bit_or', prokind => 'a', proisstrict => 'f', prorettype => 'int4',
80698069
proargtypes => 'int4', prosrc => 'aggregate_dummy' },
8070-
{ oid => '8453', descr => 'bitwise-xor integer aggregate',
8070+
{ oid => '6165', descr => 'bitwise-xor integer aggregate',
80718071
proname => 'bit_xor', prokind => 'a', proisstrict => 'f',
80728072
prorettype => 'int4', proargtypes => 'int4', prosrc => 'aggregate_dummy' },
80738073
{ oid => '2240', descr => 'bitwise-and bigint aggregate',
@@ -8076,7 +8076,7 @@
80768076
{ oid => '2241', descr => 'bitwise-or bigint aggregate',
80778077
proname => 'bit_or', prokind => 'a', proisstrict => 'f', prorettype => 'int8',
80788078
proargtypes => 'int8', prosrc => 'aggregate_dummy' },
8079-
{ oid => '8454', descr => 'bitwise-xor bigint aggregate',
8079+
{ oid => '6166', descr => 'bitwise-xor bigint aggregate',
80808080
proname => 'bit_xor', prokind => 'a', proisstrict => 'f',
80818081
prorettype => 'int8', proargtypes => 'int8', prosrc => 'aggregate_dummy' },
80828082
{ oid => '2242', descr => 'bitwise-and bit aggregate',
@@ -8085,7 +8085,7 @@
80858085
{ oid => '2243', descr => 'bitwise-or bit aggregate',
80868086
proname => 'bit_or', prokind => 'a', proisstrict => 'f', prorettype => 'bit',
80878087
proargtypes => 'bit', prosrc => 'aggregate_dummy' },
8088-
{ oid => '8455', descr => 'bitwise-xor bit aggregate',
8088+
{ oid => '6167', descr => 'bitwise-xor bit aggregate',
80898089
proname => 'bit_xor', prokind => 'a', proisstrict => 'f', prorettype => 'bit',
80908090
proargtypes => 'bit', prosrc => 'aggregate_dummy' },
80918091

@@ -9323,15 +9323,15 @@
93239323
proname => 'ts_lexize', prorettype => '_text',
93249324
proargtypes => 'regdictionary text', prosrc => 'ts_lexize' },
93259325

9326-
{ oid => '9531', descr => 'debug function for text search configuration',
9326+
{ oid => '6183', descr => 'debug function for text search configuration',
93279327
proname => 'ts_debug', prolang => 'sql', prorows => '1000', proretset => 't',
93289328
provolatile => 's', prorettype => 'record', proargtypes => 'regconfig text',
93299329
proallargtypes => '{regconfig,text,text,text,text,_regdictionary,regdictionary,_text}',
93309330
proargmodes => '{i,i,o,o,o,o,o,o}',
93319331
proargnames => '{config,document,alias,description,token,dictionaries,dictionary,lexemes}',
93329332
prosrc => 'see system_functions.sql' },
93339333

9334-
{ oid => '9532',
9334+
{ oid => '6184',
93359335
descr => 'debug function for current text search configuration',
93369336
proname => 'ts_debug', prolang => 'sql', prorows => '1000', proretset => 't',
93379337
provolatile => 's', prorettype => 'record', proargtypes => 'text',
@@ -9939,10 +9939,10 @@
99399939
proname => 'btrecordcmp', prorettype => 'int4',
99409940
proargtypes => 'record record', prosrc => 'btrecordcmp' },
99419941

9942-
{ oid => '9609', descr => 'hash',
9942+
{ oid => '6192', descr => 'hash',
99439943
proname => 'hash_record', prorettype => 'int4', proargtypes => 'record',
99449944
prosrc => 'hash_record' },
9945-
{ oid => '9610', descr => 'hash',
9945+
{ oid => '6193', descr => 'hash',
99469946
proname => 'hash_record_extended', prorettype => 'int8',
99479947
proargtypes => 'record int8', prosrc => 'hash_record_extended' },
99489948

@@ -10172,11 +10172,11 @@
1017210172
{ oid => '3881', descr => 'GiST support',
1017310173
proname => 'range_gist_same', prorettype => 'internal',
1017410174
proargtypes => 'anyrange anyrange internal', prosrc => 'range_gist_same' },
10175-
{ oid => '8017', descr => 'GiST support',
10175+
{ oid => '6154', descr => 'GiST support',
1017610176
proname => 'multirange_gist_consistent', prorettype => 'bool',
1017710177
proargtypes => 'internal anymultirange int2 oid internal',
1017810178
prosrc => 'multirange_gist_consistent' },
10179-
{ oid => '8019', descr => 'GiST support',
10179+
{ oid => '6156', descr => 'GiST support',
1018010180
proname => 'multirange_gist_compress', prorettype => 'internal',
1018110181
proargtypes => 'internal', prosrc => 'multirange_gist_compress' },
1018210182
{ oid => '3902', descr => 'hash a range',
@@ -11501,10 +11501,10 @@
1150111501
prosrc => 'pg_control_init' },
1150211502

1150311503
# subscripting support for built-in types
11504-
{ oid => '9255', descr => 'standard array subscripting support',
11504+
{ oid => '6179', descr => 'standard array subscripting support',
1150511505
proname => 'array_subscript_handler', prorettype => 'internal',
1150611506
proargtypes => 'internal', prosrc => 'array_subscript_handler' },
11507-
{ oid => '9256', descr => 'raw array subscripting support',
11507+
{ oid => '6180', descr => 'raw array subscripting support',
1150811508
proname => 'raw_array_subscript_handler', prorettype => 'internal',
1150911509
proargtypes => 'internal', prosrc => 'raw_array_subscript_handler' },
1151011510
# type subscripting support
@@ -11586,7 +11586,7 @@
1158611586
proname => 'is_normalized', prorettype => 'bool', proargtypes => 'text text',
1158711587
prosrc => 'unicode_is_normalized' },
1158811588

11589-
{ oid => '9822', descr => 'unescape Unicode characters',
11589+
{ oid => '6198', descr => 'unescape Unicode characters',
1159011590
proname => 'unistr', prorettype => 'text', proargtypes => 'text',
1159111591
prosrc => 'unistr' },
1159211592

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp