Move LSN waiting declarations and definitions to better place
Alexander Korotkov <akorotkov@postgresql.org>
Move LSN waiting declarations and definitions to better place 3c5db1d6b implemented the pg_wal_replay_wait() stored procedure. Due to the patch development history, the implementation resided in src/backend/commands/waitlsn.c (src/include/commands/waitlsn.h for headers). 014f9f34d moved pg_wal_replay_wait() itself to src/backend/access/transam/xlogfuncs.c near to the WAL-manipulation functions. But most of the implementation stayed in place. The code in src/backend/commands/waitlsn.c has nothing to do with commands, but is related to WAL. So, this commit moves this code into src/backend/access/transam/xlogwait.c (src/include/access/xlogwait.h for headers). Reported-by: Peter Eisentraut Discussion: https://postgr.es/m/18c0fa64-0475-415e-a1bd-665d922c5201%40eisentraut.org Reviewed-by: Pavel Borisov
Files
| Path | Change | +/− |
|---|---|---|
| src/backend/access/transam/Makefile | modified | +2 −1 |
| src/backend/access/transam/meson.build | modified | +1 −0 |
| src/backend/access/transam/xact.c | modified | +1 −1 |
| src/backend/access/transam/xlog.c | modified | +1 −1 |
| src/backend/access/transam/xlogfuncs.c | modified | +1 −1 |
| src/backend/access/transam/xlogrecovery.c | modified | +1 −1 |
| src/backend/access/transam/xlogwait.c (from src/backend/commands/waitlsn.c) | renamed | +3 −3 |
| src/backend/commands/Makefile | modified | +1 −2 |
| src/backend/commands/meson.build | modified | +0 −1 |
| src/backend/storage/ipc/ipci.c | modified | +1 −1 |
| src/backend/storage/lmgr/proc.c | modified | +1 −1 |
| src/include/access/xlogwait.h (from src/include/commands/waitlsn.h) | renamed | +5 −5 |
Discussion
- pgsql: Implement pg_wal_replay_wait() stored procedure 45 messages · 2024-08-02 → 2024-11-04