Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit b78542b

Browse files
committed
Run "make reformat-dat-files".
Mostly to make sure the previous commit didn't break this. Discussion: https://postgr.es/m/20200212182337.GZ1412@telsasoft.com
1 parent 86ff085 commit b78542b

File tree

2 files changed

+7
-8
lines changed

2 files changed

+7
-8
lines changed

src/include/catalog/pg_proc.dat

+4-5
Original file line numberDiff line numberDiff line change
@@ -7684,10 +7684,9 @@
76847684
prosrc => 'pg_notification_queue_usage' },
76857685

76867686
# shared memory usage
7687-
{ oid => '8613',
7688-
descr => 'allocations from the main shared memory segment',
7689-
proname => 'pg_get_shmem_allocations', 'prorows' => 50, 'proretset' => 't',
7690-
provolatile => 'v', 'prorettype' => 'record', 'proargtypes' => '',
7687+
{ oid => '8613', descr => 'allocations from the main shared memory segment',
7688+
proname => 'pg_get_shmem_allocations', prorows => '50', proretset => 't',
7689+
provolatile => 'v', prorettype => 'record', proargtypes => '',
76917690
proallargtypes => '{text,int8,int8,int8}', proargmodes => '{o,o,o,o}',
76927691
proargnames => '{name,off,size,allocated_size}',
76937692
prosrc => 'pg_get_shmem_allocations' },
@@ -9326,7 +9325,7 @@
93269325
proname => 'jsonb_delete_path', prorettype => 'jsonb',
93279326
proargtypes => 'jsonb _text', prosrc => 'jsonb_delete_path' },
93289327
{ oid => '8945', descr => 'Set part of a jsonb, handle NULL value',
9329-
proname => 'jsonb_set_lax', prorettype => 'jsonb', proisstrict => 'f',
9328+
proname => 'jsonb_set_lax', proisstrict => 'f', prorettype => 'jsonb',
93309329
proargtypes => 'jsonb _text jsonb bool text', prosrc => 'jsonb_set_lax' },
93319330
{ oid => '3305', descr => 'Set part of a jsonb',
93329331
proname => 'jsonb_set', prorettype => 'jsonb',

src/include/catalog/pg_type.dat

+3-3
Original file line numberDiff line numberDiff line change
@@ -215,9 +215,9 @@
215215

216216
{ oid => '700', array_type_oid => '1021',
217217
descr => 'single-precision floating point number, 4-byte storage',
218-
typname => 'float4', typlen => '4', typbyval => 't',
219-
typcategory => 'N', typinput => 'float4in', typoutput => 'float4out',
220-
typreceive => 'float4recv', typsend => 'float4send', typalign => 'i' },
218+
typname => 'float4', typlen => '4', typbyval => 't', typcategory => 'N',
219+
typinput => 'float4in', typoutput => 'float4out', typreceive => 'float4recv',
220+
typsend => 'float4send', typalign => 'i' },
221221
{ oid => '701', array_type_oid => '1022',
222222
descr => 'double-precision floating point number, 8-byte storage',
223223
typname => 'float8', typlen => '8', typbyval => 'FLOAT8PASSBYVAL',

0 commit comments

Comments
 (0)