pgsql: Fix incorrect loop counts in tidbitmap.c. - Mailing list pgsql-committers

From Tom Lane
Subject pgsql: Fix incorrect loop counts in tidbitmap.c.
Date
Msg-id E1VhSux-0005pR-Ax@gemulon.postgresql.org
Whole thread Raw
List pgsql-committers
Fix incorrect loop counts in tidbitmap.c.

A couple of places that should have been iterating over WORDS_PER_CHUNK
words were iterating over WORDS_PER_PAGE words instead.  This thinko
accidentally failed to fail, because (at least on common architectures
with default BLCKSZ) WORDS_PER_CHUNK is a bit less than WORDS_PER_PAGE,
and the extra words being looked at were always zero so nothing happened.
Still, it's a bug waiting to happen if anybody ever fools with the
parameters affecting TIDBitmap sizes, and it's a small waste of cycles
too.  So back-patch to all active branches.

Etsuro Fujita

Branch
------
REL9_2_STABLE

Details
-------
http://git.postgresql.org/pg/commitdiff/b18882aed6bf7190677c351199f95d409559bbc0

Modified Files
--------------
src/backend/nodes/tidbitmap.c |    4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)


pgsql-committers by date:

Previous
From: Tom Lane
Date:
Subject: pgsql: Fix incorrect loop counts in tidbitmap.c.
Next
From: Tom Lane
Date:
Subject: pgsql: Fix incorrect loop counts in tidbitmap.c.