diff options
author | Peter Eisentraut | 2024-05-17 11:48:31 +0000 |
---|---|---|
committer | Peter Eisentraut | 2024-05-17 11:48:31 +0000 |
commit | e9b7aee27283e65bd8819cd7a081dbe79eb1c1a3 (patch) | |
tree | 72abeed96cd0d35452a82749db6709f97017878f /src/backend/replication | |
parent | 17974ec259463869bb6bb4885d46847422fbc9ec (diff) |
A few follow-up fixes for GUC name quoting
Fixups for 17974ec259: Some messages were missed (and some were new
since the patch was originally proposed), and there was a typo
introduced.
Diffstat (limited to 'src/backend/replication')
-rw-r--r-- | src/backend/replication/logical/slotsync.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/replication/logical/slotsync.c b/src/backend/replication/logical/slotsync.c index f1f44d41eff..56d3fb5d0e5 100644 --- a/src/backend/replication/logical/slotsync.c +++ b/src/backend/replication/logical/slotsync.c @@ -1047,7 +1047,7 @@ ValidateSlotSyncParams(int elevel) if (wal_level < WAL_LEVEL_LOGICAL) ereport(ERROR, errcode(ERRCODE_INVALID_PARAMETER_VALUE), - errmsg("slot synchronization requires wal_level >= \"logical\"")); + errmsg("slot synchronization requires \"wal_level\" >= \"logical\"")); /* * A physical replication slot(primary_slot_name) is required on the |