1
0
mirror of https://github.com/postgres/postgres.git synced 2025-04-22 23:02:54 +03:00

Silence compiler warnings in BitmapHeapNext().

Same disease as 270d7dd8a5a7128fc2b859f3bf95e2c1fb45be79.
This commit is contained in:
Tom Lane 2017-03-08 12:43:39 -05:00
parent ff97741bc8
commit 15d03e5976

View File

@ -76,8 +76,8 @@ BitmapHeapNext(BitmapHeapScanState *node)
ExprContext *econtext; ExprContext *econtext;
HeapScanDesc scan; HeapScanDesc scan;
TIDBitmap *tbm; TIDBitmap *tbm;
TBMIterator *tbmiterator; TBMIterator *tbmiterator = NULL;
TBMSharedIterator *shared_tbmiterator; TBMSharedIterator *shared_tbmiterator = NULL;
TBMIterateResult *tbmres; TBMIterateResult *tbmres;
OffsetNumber targoffset; OffsetNumber targoffset;
TupleTableSlot *slot; TupleTableSlot *slot;