diff --git a/src/include/catalog/pg_proc.dat b/src/include/catalog/pg_proc.dat index 226c904c04..0345118cdb 100644 --- a/src/include/catalog/pg_proc.dat +++ b/src/include/catalog/pg_proc.dat @@ -7684,10 +7684,9 @@ prosrc => 'pg_notification_queue_usage' }, # shared memory usage -{ oid => '8613', - descr => 'allocations from the main shared memory segment', - proname => 'pg_get_shmem_allocations', 'prorows' => 50, 'proretset' => 't', - provolatile => 'v', 'prorettype' => 'record', 'proargtypes' => '', +{ oid => '8613', descr => 'allocations from the main shared memory segment', + proname => 'pg_get_shmem_allocations', prorows => '50', proretset => 't', + provolatile => 'v', prorettype => 'record', proargtypes => '', proallargtypes => '{text,int8,int8,int8}', proargmodes => '{o,o,o,o}', proargnames => '{name,off,size,allocated_size}', prosrc => 'pg_get_shmem_allocations' }, @@ -9326,7 +9325,7 @@ proname => 'jsonb_delete_path', prorettype => 'jsonb', proargtypes => 'jsonb _text', prosrc => 'jsonb_delete_path' }, { oid => '8945', descr => 'Set part of a jsonb, handle NULL value', - proname => 'jsonb_set_lax', prorettype => 'jsonb', proisstrict => 'f', + proname => 'jsonb_set_lax', proisstrict => 'f', prorettype => 'jsonb', proargtypes => 'jsonb _text jsonb bool text', prosrc => 'jsonb_set_lax' }, { oid => '3305', descr => 'Set part of a jsonb', proname => 'jsonb_set', prorettype => 'jsonb', diff --git a/src/include/catalog/pg_type.dat b/src/include/catalog/pg_type.dat index fe2c4eabb4..4cf2b9df7b 100644 --- a/src/include/catalog/pg_type.dat +++ b/src/include/catalog/pg_type.dat @@ -215,9 +215,9 @@ { oid => '700', array_type_oid => '1021', descr => 'single-precision floating point number, 4-byte storage', - typname => 'float4', typlen => '4', typbyval => 't', - typcategory => 'N', typinput => 'float4in', typoutput => 'float4out', - typreceive => 'float4recv', typsend => 'float4send', typalign => 'i' }, + typname => 'float4', typlen => '4', typbyval => 't', typcategory => 'N', + typinput => 'float4in', typoutput => 'float4out', typreceive => 'float4recv', + typsend => 'float4send', typalign => 'i' }, { oid => '701', array_type_oid => '1022', descr => 'double-precision floating point number, 8-byte storage', typname => 'float8', typlen => '8', typbyval => 'FLOAT8PASSBYVAL',