mirror of
https://github.com/postgres/postgres.git
synced 2025-11-25 12:03:53 +03:00
Fix failure to mark init buffers as BM_PERMANENT.
This could result in corruption of the init fork of an unlogged index if the ambuildempty routine for that index used shared buffers to create the init fork, which was true for brin, gin, gist, and hash indexes. Patch by me, based on an earlier patch by Michael Paquier, who also reviewed this one. This also incorporates an idea from Artur Zakirov. Discussion: http://postgr.es/m/CACYUyc8yccE4xfxhqxfh_Mh38j7dRFuxfaK1p6dSNAEUakxUyQ@mail.gmail.com
This commit is contained in:
@@ -64,8 +64,8 @@
|
||||
#define BM_JUST_DIRTIED (1U << 28) /* dirtied since write started */
|
||||
#define BM_PIN_COUNT_WAITER (1U << 29) /* have waiter for sole pin */
|
||||
#define BM_CHECKPOINT_NEEDED (1U << 30) /* must write for checkpoint */
|
||||
#define BM_PERMANENT (1U << 31) /* permanent relation (not
|
||||
* unlogged) */
|
||||
#define BM_PERMANENT (1U << 31) /* permanent buffer (not
|
||||
* unlogged, or init fork) */
|
||||
/*
|
||||
* The maximum allowed value of usage_count represents a tradeoff between
|
||||
* accuracy and speed of the clock-sweep buffer management algorithm. A
|
||||
|
||||
Reference in New Issue
Block a user