mirror of
https://github.com/postgres/postgres.git
synced 2025-07-05 07:21:24 +03:00
Distinguish XLOG_FPI records generated for hint-bit updates.
Add a new XLOG_FPI_FOR_HINT record type, and use that for full-page images generated for hint bit updates, when checksums are enabled. The new record type is replayed exactly the same as XLOG_FPI, but allows them to be tallied separately e.g. in pg_xlogdump.
This commit is contained in:
@ -170,6 +170,7 @@ DecodeXLogOp(LogicalDecodingContext *ctx, XLogRecordBuffer *buf)
|
||||
case XLOG_PARAMETER_CHANGE:
|
||||
case XLOG_RESTORE_POINT:
|
||||
case XLOG_FPW_CHANGE:
|
||||
case XLOG_FPI_FOR_HINT:
|
||||
case XLOG_FPI:
|
||||
break;
|
||||
default:
|
||||
|
Reference in New Issue
Block a user