diff options
author | Alexander Korotkov <akorotkov@postgresql.org> | 2024-04-11 16:30:32 +0300 |
---|---|---|
committer | Alexander Korotkov <akorotkov@postgresql.org> | 2024-04-11 17:28:15 +0300 |
commit | 772faafca1b288c4dd66b7150a7831c27b768003 (patch) | |
tree | 53ccb481bb8e8ca93feff18555734b706aa4ad7c /src/backend/storage/ipc | |
parent | 922c4c461d213a422ee7eb6c38e399607539210a (diff) | |
download | postgresql-772faafca1b288c4dd66b7150a7831c27b768003.tar.gz postgresql-772faafca1b288c4dd66b7150a7831c27b768003.zip |
Revert: Implement pg_wal_replay_wait() stored procedure
This commit reverts 06c418e163, e37662f221, bf1e650806, 25f42429e2,
ee79928441, and 74eaf66f98 per review by Heikki Linnakangas.
Discussion: https://postgr.es/m/b155606b-e744-4218-bda5-29379779da1a%40iki.fi
Diffstat (limited to 'src/backend/storage/ipc')
-rw-r--r-- | src/backend/storage/ipc/ipci.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/backend/storage/ipc/ipci.c b/src/backend/storage/ipc/ipci.c index 90c84fec27a..521ed5418cc 100644 --- a/src/backend/storage/ipc/ipci.c +++ b/src/backend/storage/ipc/ipci.c @@ -25,7 +25,6 @@ #include "access/xlogprefetcher.h" #include "access/xlogrecovery.h" #include "commands/async.h" -#include "commands/waitlsn.h" #include "miscadmin.h" #include "pgstat.h" #include "postmaster/autovacuum.h" @@ -153,7 +152,6 @@ CalculateShmemSize(int *num_semaphores) size = add_size(size, WaitEventExtensionShmemSize()); size = add_size(size, InjectionPointShmemSize()); size = add_size(size, SlotSyncShmemSize()); - size = add_size(size, WaitLSNShmemSize()); #ifdef EXEC_BACKEND size = add_size(size, ShmemBackendArraySize()); #endif @@ -359,7 +357,6 @@ CreateOrAttachShmemStructs(void) StatsShmemInit(); WaitEventExtensionShmemInit(); InjectionPointShmemInit(); - WaitLSNShmemInit(); } /* |