mirror of
https://github.com/postgres/postgres.git
synced 2025-07-03 20:02:46 +03:00
Fix compiler warning.
This commit is contained in:
@ -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);
|
||||
|
Reference in New Issue
Block a user