diff options
author | Daniel Gustafsson | 2024-04-19 07:58:04 +0000 |
---|---|---|
committer | Daniel Gustafsson | 2024-04-19 07:58:04 +0000 |
commit | f6e845133630fe08acf7ad640f6d8443f13b134a (patch) | |
tree | bc3dbf677a5ff51e43e4f3605b92c17b4ef47006 | |
parent | 9c58bf1507bee00b8cda837a232401fec21e6873 (diff) |
Remove unused function prototype
Commit aafc05de1bf5 removed StartSlotSyncWorker() but mistakenly left
the prototype in slotsync.h. Fix by removing.
Reported-by: Alexander Lakhin <[email protected]>
Discussion: https://postgr.es/m/[email protected]
-rw-r--r-- | src/include/replication/slotsync.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/include/replication/slotsync.h b/src/include/replication/slotsync.h index 61e154b31bf..e03c2a005a4 100644 --- a/src/include/replication/slotsync.h +++ b/src/include/replication/slotsync.h @@ -27,7 +27,6 @@ extern char *CheckAndGetDbnameFromConninfo(void); extern bool ValidateSlotSyncParams(int elevel); extern void ReplSlotSyncWorkerMain(char *startup_data, size_t startup_data_len) pg_attribute_noreturn(); -extern int StartSlotSyncWorker(void); extern void ShutDownSlotSync(void); extern bool SlotSyncWorkerCanRestart(void); |