diff options
author | Noah Misch | 2024-10-25 13:51:02 +0000 |
---|---|---|
committer | Noah Misch | 2024-10-25 13:51:02 +0000 |
commit | 243e9b40f1b2dd09d6e5bf91ebf6e822a2cd3704 (patch) | |
tree | d092b3c3b261da64a5f17a35b87d67626f9591f7 /src/include/access/xlog_internal.h | |
parent | 0fe173680e148984a150326b80c322a91ffa899d (diff) |
For inplace update, send nontransactional invalidations.
The inplace update survives ROLLBACK. The inval didn't, so another
backend's DDL could then update the row without incorporating the
inplace update. In the test this fixes, a mix of CREATE INDEX and ALTER
TABLE resulted in a table with an index, yet relhasindex=f. That is a
source of index corruption. Back-patch to v12 (all supported versions).
The back branch versions don't change WAL, because those branches just
added end-of-recovery SIResetAll(). All branches change the ABI of
extern function PrepareToInvalidateCacheTuple(). No PGXN extension
calls that, and there's no apparent use case in extensions.
Reviewed by Nitin Motiani and (in earlier versions) Andres Freund.
Discussion: https://postgr.es/m/[email protected]
Diffstat (limited to 'src/include/access/xlog_internal.h')
-rw-r--r-- | src/include/access/xlog_internal.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/access/xlog_internal.h b/src/include/access/xlog_internal.h index 5ef244bcdb4..d9cf51a0f9f 100644 --- a/src/include/access/xlog_internal.h +++ b/src/include/access/xlog_internal.h @@ -31,7 +31,7 @@ /* * Each page of XLOG file has a header like this: */ -#define XLOG_PAGE_MAGIC 0xD117 /* can be used as WAL version indicator */ +#define XLOG_PAGE_MAGIC 0xD118 /* can be used as WAL version indicator */ typedef struct XLogPageHeaderData { |