diff options
author | Heikki Linnakangas <heikki.linnakangas@iki.fi> | 2022-02-16 09:30:38 +0200 |
---|---|---|
committer | Heikki Linnakangas <heikki.linnakangas@iki.fi> | 2022-02-16 09:30:38 +0200 |
commit | 70e81861fadd9112fa2d425c762e163910a4ee52 (patch) | |
tree | 2ef359340ed71a8b4234c2c2e49edb735091de43 /src/backend/access/transam/xlogfuncs.c | |
parent | be1c00ab13a7c2c9299d60cb5a9d285c40e2506c (diff) | |
download | postgresql-70e81861fadd9112fa2d425c762e163910a4ee52.tar.gz postgresql-70e81861fadd9112fa2d425c762e163910a4ee52.zip |
Split xlog.c into xlog.c and xlogrecovery.c.
This moves the functions related to performing WAL recovery into the new
xlogrecovery.c source file, leaving xlog.c responsible for maintaining
the WAL buffers, coordinating the startup and switch from recovery to
normal operations, and other miscellaneous stuff that have always been in
xlog.c.
Reviewed-by: Andres Freund, Kyotaro Horiguchi, Robert Haas
Discussion: https://www.postgresql.org/message-id/a31f27b4-a31d-f976-6217-2b03be646ffa%40iki.fi
Diffstat (limited to 'src/backend/access/transam/xlogfuncs.c')
-rw-r--r-- | src/backend/access/transam/xlogfuncs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/access/transam/xlogfuncs.c b/src/backend/access/transam/xlogfuncs.c index d8af5aad58b..2f900533cdb 100644 --- a/src/backend/access/transam/xlogfuncs.c +++ b/src/backend/access/transam/xlogfuncs.c @@ -19,8 +19,8 @@ #include <unistd.h> #include "access/htup_details.h" -#include "access/xlog.h" #include "access/xlog_internal.h" +#include "access/xlogrecovery.h" #include "access/xlogutils.h" #include "catalog/pg_type.h" #include "funcapi.h" |