postgresql/src/backend/replication/logical
Heikki Linnakangas 38a957316d Refactor XLogReadRecord(), adding XLogBeginRead() function.
The signature of XLogReadRecord() required the caller to pass the starting
WAL position as argument, or InvalidXLogRecPtr to continue reading at the
end of previous record. That's slightly awkward to the callers, as most
of them don't want to randomly jump around in the WAL stream, but start
reading at one position and then read everything from that point onwards.
Remove the 'RecPtr' argument and add a new function XLogBeginRead() to
specify the starting position instead. That's more convenient for the
callers. Also, xlogreader holds state that is reset when you change the
starting position, so having a separate function for doing that feels like
a more natural fit.

This changes XLogFindNextRecord() function so that it doesn't reset the
xlogreader's state to what it was before the call anymore. Instead, it
positions the xlogreader to the found record, like XLogBeginRead().

Reviewed-by: Kyotaro Horiguchi, Alvaro Herrera
Discussion: https://www.postgresql.org/message-id/5382a7a3-debe-be31-c860-cb810c08f366%40iki.fi
2020-01-26 11:39:00 +02:00
..
Makefile Split all OBJS style lines in makefiles into one-line-per-entry style. 2019-11-05 14:41:07 -08:00
decode.c Update copyrights for 2020 2020-01-01 12:21:45 -05:00
launcher.c Update copyrights for 2020 2020-01-01 12:21:45 -05:00
logical.c Refactor XLogReadRecord(), adding XLogBeginRead() function. 2020-01-26 11:39:00 +02:00
logicalfuncs.c Refactor XLogReadRecord(), adding XLogBeginRead() function. 2020-01-26 11:39:00 +02:00
message.c Update copyrights for 2020 2020-01-01 12:21:45 -05:00
origin.c Update copyrights for 2020 2020-01-01 12:21:45 -05:00
proto.c Remove incorrect assertion for INSERT in logical replication's publisher 2020-01-12 22:43:45 +09:00
relation.c Update copyrights for 2020 2020-01-01 12:21:45 -05:00
reorderbuffer.c Set ReorderBufferTXN->final_lsn more eagerly 2020-01-17 18:00:39 -03:00
snapbuild.c Update copyrights for 2020 2020-01-01 12:21:45 -05:00
tablesync.c Make parser rely more heavily on the ParseNamespaceItem data structure. 2020-01-02 11:29:01 -05:00
worker.c Have logical replication subscriber fire column triggers 2020-01-06 08:40:00 +01:00