summaryrefslogtreecommitdiff
path: root/src/include/utils/guc_hooks.h
diff options
context:
space:
mode:
authorAmit Kapila <akapila@postgresql.org>2024-07-01 11:02:04 +0530
committerAmit Kapila <akapila@postgresql.org>2024-07-01 11:33:55 +0530
commit0f934b0739ad28e8e20d8ad22ca80538544ce28a (patch)
tree56ac62b89bbb4ed23dc169fe7bf5cc347f1d25c7 /src/include/utils/guc_hooks.h
parent55c309fc5b08c39f9d27b2a2fa098fde69368b58 (diff)
Rename standby_slot_names to synchronized_standby_slots.
The standby_slot_names GUC allows the specification of physical standby slots that must be synchronized before the logical walsenders associated with logical failover slots. However, for this purpose, the GUC name is too generic. Author: Hou Zhijie Reviewed-by: Bertrand Drouvot, Masahiko Sawada Backpatch-through: 17 Discussion: https://postgr.es/m/ZnWeUgdHong93fQN@momjian.us
Diffstat (limited to 'src/include/utils/guc_hooks.h')
-rw-r--r--src/include/utils/guc_hooks.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/include/utils/guc_hooks.h b/src/include/utils/guc_hooks.h
index d64dc5fcdb0..070d3f2a1ad 100644
--- a/src/include/utils/guc_hooks.h
+++ b/src/include/utils/guc_hooks.h
@@ -174,8 +174,8 @@ extern bool check_wal_consistency_checking(char **newval, void **extra,
extern void assign_wal_consistency_checking(const char *newval, void *extra);
extern bool check_wal_segment_size(int *newval, void **extra, GucSource source);
extern void assign_wal_sync_method(int new_wal_sync_method, void *extra);
-extern bool check_standby_slot_names(char **newval, void **extra,
- GucSource source);
-extern void assign_standby_slot_names(const char *newval, void *extra);
+extern bool check_synchronized_standby_slots(char **newval, void **extra,
+ GucSource source);
+extern void assign_synchronized_standby_slots(const char *newval, void *extra);
#endif /* GUC_HOOKS_H */