1
0
mirror of https://github.com/postgres/postgres.git synced 2025-05-02 11:44:50 +03:00

Bump WAL version.

Oversight in commit e6d8069522. Since that commit changed the format of
XLOG_DBASE_DROP WAL record, XLOG_PAGE_MAGIC needs to be bumped.

Spotted by Michael Paquier
This commit is contained in:
Fujii Masao 2019-11-21 22:17:28 +09:00
parent e6d8069522
commit 43a54a3bcc

View File

@ -31,7 +31,7 @@
/*
* Each page of XLOG file has a header like this:
*/
#define XLOG_PAGE_MAGIC 0xD101 /* can be used as WAL version indicator */
#define XLOG_PAGE_MAGIC 0xD102 /* can be used as WAL version indicator */
typedef struct XLogPageHeaderData
{