mirror of
https://github.com/postgres/postgres.git
synced 2026-04-22 06:37:06 -04:00
Bump XLOG_PAGE_MAGIC after xl_heap_prune change
add323da40 altered xl_heap_prune, changing the WAL format, but
neglected to bump XLOG_PAGE_MAGIC. Do so now.
Author: Melanie Plageman <melanieplageman@gmail.com>
Reported-by: Kirill Reshke <reshkekirill@gmail.com>
Reported-by: Michael Paquier <michael@paquier.xyz>
Discussion: https://postgr.es/m/aO3Gw6hCAZFUd5ab%40paquier.xyz
This commit is contained in:
parent
5f3808646f
commit
4a8fb58671
1 changed files with 1 additions and 1 deletions
|
|
@ -31,7 +31,7 @@
|
|||
/*
|
||||
* Each page of XLOG file has a header like this:
|
||||
*/
|
||||
#define XLOG_PAGE_MAGIC 0xD118 /* can be used as WAL version indicator */
|
||||
#define XLOG_PAGE_MAGIC 0xD119 /* can be used as WAL version indicator */
|
||||
|
||||
typedef struct XLogPageHeaderData
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in a new issue