Commit 452d1d19 authored by Robert Haas's avatar Robert Haas

Fix compiler warning.

parent d326d9e8
......@@ -1858,7 +1858,7 @@ CopyFrom(CopyState cstate)
bool useHeapMultiInsert;
int nBufferedTuples = 0;
#define MAX_BUFFERED_TUPLES 1000
HeapTuple *bufferedTuples;
HeapTuple *bufferedTuples = NULL; /* initialize to silence warning */
Size bufferedTuplesSize = 0;
Assert(cstate->rel);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment