mirror of
https://github.com/zebrajr/postgres.git
synced 2025-12-07 12:20:31 +01:00
Fix compiler warning.
This commit is contained in:
parent
d326d9e8ea
commit
452d1d193d
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user