]> granicus.if.org Git - postgresql/commit
Fix errors in contrib/bloom index build.
authorTom Lane <tgl@sss.pgh.pa.us>
Thu, 22 Mar 2018 17:13:58 +0000 (13:13 -0400)
committerTom Lane <tgl@sss.pgh.pa.us>
Thu, 22 Mar 2018 17:14:07 +0000 (13:14 -0400)
commitc35b47286960d2c7885dce162ddfe26939d0d373
tree1dc40d1bd725365a25cf57571e0ba51e68ba4f9a
parente2f1eb0ee30d144628ab523432320f174a2c8966
Fix errors in contrib/bloom index build.

Count the number of tuples in the index honestly, instead of assuming
that it's the same as the number of tuples in the heap.  (It might be
different if the index is partial.)

Fix counting of tuples in current index page, too.  This error would
have led to failing to write out the final page of the index if it
contained exactly one tuple, so that the last tuple of the relation
would not get indexed.

Back-patch to 9.6 where contrib/bloom was added.

Tomas Vondra and Tom Lane

Discussion: https://postgr.es/m/3b3d8eac-c709-0d25-088e-b98339a1b28a@2ndquadrant.com
contrib/bloom/blinsert.c