[COMMITTERS] pgsql: Fix possible crash with Parallel Bitmap Heap Scan. - Mailing list pgsql-committers

From Robert Haas
Subject [COMMITTERS] pgsql: Fix possible crash with Parallel Bitmap Heap Scan.
Date
Msg-id E1e35Ka-0001do-8e@gemulon.postgresql.org
Whole thread Raw
List pgsql-committers
Fix possible crash with Parallel Bitmap Heap Scan.

If a Parallel Bitmap Heap scan's chain of leftmost descendents
includes a BitmapOr whose first child is a BitmapAnd, the prior coding
would mistakenly create a non-shared TIDBitmap and then try to perform
shared iteration.

Report by Tomas Vondra.  Patch by Dilip Kumar.

Discussion: http://postgr.es/m/50e89684-8ad9-dead-8767-c9545bafd3b6@2ndquadrant.com

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/6393613b6a1e0feae3d22af608397b252cee5b58

Modified Files
--------------
src/backend/optimizer/plan/createplan.c | 4 ++++
1 file changed, 4 insertions(+)


--
Sent via pgsql-committers mailing list (pgsql-committers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-committers

pgsql-committers by date:

Previous
From: Andres Freund
Date:
Subject: Re: [HACKERS] [COMMITTERS] pgsql: Improve performance ofSendRowDescriptionMessage.
Next
From: Andres Freund
Date:
Subject: [COMMITTERS] pgsql: Force "restrict" not to be used when compiling with xlc.