From 49b579f92dc6add10d1f03ba2cea6eab597a2f2f Mon Sep 17 00:00:00 2001 From: Peter Eisentraut Date: Tue, 19 Mar 2024 10:55:51 +0100 Subject: [PATCH] Fix misleading comments To match code changes in 229fb58d4f. --- src/backend/replication/repl_gram.y | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/repl_gram.y b/src/backend/replication/repl_gram.y index 7474f5bd671..53780bbf297 100644 --- a/src/backend/replication/repl_gram.y +++ b/src/backend/replication/repl_gram.y @@ -275,7 +275,7 @@ alter_replication_slot: ; /* - * START_REPLICATION [SLOT slot] [PHYSICAL] %X/%X [TIMELINE %d] + * START_REPLICATION [SLOT slot] [PHYSICAL] %X/%X [TIMELINE %u] */ start_replication: K_START_REPLICATION opt_slot opt_physical RECPTR opt_timeline @@ -305,7 +305,7 @@ start_logical_replication: } ; /* - * TIMELINE_HISTORY %d + * TIMELINE_HISTORY %u */ timeline_history: K_TIMELINE_HISTORY UCONST -- 2.39.5