Skip to content
Snippets Groups Projects
Commit 15d03e59 authored by Tom Lane's avatar Tom Lane
Browse files

Silence compiler warnings in BitmapHeapNext().

Same disease as 270d7dd8.
parent ff97741b
No related branches found
No related tags found
No related merge requests found
......@@ -76,8 +76,8 @@ BitmapHeapNext(BitmapHeapScanState *node)
ExprContext *econtext;
HeapScanDesc scan;
TIDBitmap *tbm;
TBMIterator *tbmiterator;
TBMSharedIterator *shared_tbmiterator;
TBMIterator *tbmiterator = NULL;
TBMSharedIterator *shared_tbmiterator = NULL;
TBMIterateResult *tbmres;
OffsetNumber targoffset;
TupleTableSlot *slot;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment