pgsql: Fix bug in the GiST vacuum's 2nd stage.

From: Heikki Linnakangas <heikki(dot)linnakangas(at)iki(dot)fi>
To: pgsql-committers(at)lists(dot)postgresql(dot)org
Subject: pgsql: Fix bug in the GiST vacuum's 2nd stage.
Date: 2019-03-22 12:15:02
Message-ID: E1h7J4g-0002wt-K4@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Fix bug in the GiST vacuum's 2nd stage.

We mustn't assume that the IndexVacuumInfo pointer passed to bulkdelete()
stage is still valid in the vacuumcleanup() stage.

Per very pink buildfarm.

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/d1b9ee4e44062cc540d8e406f49b160326d58a84

Modified Files
--------------
src/backend/access/gist/gistvacuum.c | 27 ++++++++++++++-------------
1 file changed, 14 insertions(+), 13 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Heikki Linnakangas 2019-03-22 12:34:47 pgsql: Make the integerset test more verbose.
Previous Message Heikki Linnakangas 2019-03-22 11:26:41 pgsql: Add IntegerSet, to hold large sets of 64-bit ints efficiently.