Update oid for pg_wal_replay_wait() procedure
authorAlexander Korotkov <akorotkov@postgresql.org>
Thu, 26 Sep 2024 08:48:23 +0000 (11:48 +0300)
committerAlexander Korotkov <akorotkov@postgresql.org>
Thu, 26 Sep 2024 08:49:41 +0000 (11:49 +0300)
Use an oid from 8000-9999 range, as required by 98eab30b93d5.

Reported-by: Michael Paquier
Discussion: https://postgr.es/m/ZvUY6bfTwB0GsyzP%40paquier.xyz

src/include/catalog/catversion.h
src/include/catalog/pg_proc.dat

index 10bb26f2e4a15ad37a3c2a9329fab39c99f42e57..79eb5899156981bc42c74c1edc3fa845b701870e 100644 (file)
@@ -57,6 +57,6 @@
  */
 
 /*                         yyyymmddN */
-#define CATALOG_VERSION_NO 202409211
+#define CATALOG_VERSION_NO 202409261
 
 #endif
index 43f608d7a0a0cf994034d3f293112ea1ee2a44d2..60aecafdda9d2e738fcd03ccdb96aef1b4432ddd 100644 (file)
   prorettype => 'text', proargtypes => '',
   prosrc => 'pg_get_wal_replay_pause_state' },
 
-{ oid => '111',
+{ oid => '8593',
   descr => 'wait for the target LSN to be replayed on standby with an optional timeout',
   proname => 'pg_wal_replay_wait', prokind => 'p', prorettype => 'void',
   proargtypes => 'pg_lsn int8', proargnames => '{target_lsn,timeout}',