Fix past pd_upper write in ginRedoRecompress()
authorAlexander Korotkov <[email protected]>
Sun, 9 Sep 2018 18:19:29 +0000 (21:19 +0300)
committerAlexander Korotkov <[email protected]>
Sun, 9 Sep 2018 18:29:00 +0000 (21:29 +0300)
commitcc909ddbfb480928a781c21b1c142ccf1adb2fe5
tree606dd0ef43dd94dfc92b1f134d5b49bdd83da500
parentf7d745318b180634e8bb1734867caaf71b00b305
Fix past pd_upper write in ginRedoRecompress()

ginRedoRecompress() replays actions over compressed segments of posting list
in-place.  However, it might lead to write past pg_upper, because intermediate
state during playing the changes can take more space than both original state
and final state.  This commit fixes that by refuse from in-place modification.
Instead page tail is copied once modification is started, and then it's used
as the source of original segments.  Backpatch to 9.4 where posting list
compression was introduced.

Reported-by: Sivasubramanian Ramasubramanian
Discussion: https://postgr.es/m/1536091151804.6588%40amazon.com
Author: Alexander Korotkov based on patch from and ideas by Sivasubramanian Ramasubramanian
Review: Sivasubramanian Ramasubramanian
Backpatch-through: 9.4
src/backend/access/gin/ginxlog.c