mirror of
https://github.com/postgres/postgres.git
synced 2025-05-29 00:03:09 -04:00
Fix compiler warning.
This commit is contained in:
parent
d326d9e8ea
commit
452d1d193d
@ -1858,7 +1858,7 @@ CopyFrom(CopyState cstate)
|
|||||||
bool useHeapMultiInsert;
|
bool useHeapMultiInsert;
|
||||||
int nBufferedTuples = 0;
|
int nBufferedTuples = 0;
|
||||||
#define MAX_BUFFERED_TUPLES 1000
|
#define MAX_BUFFERED_TUPLES 1000
|
||||||
HeapTuple *bufferedTuples;
|
HeapTuple *bufferedTuples = NULL; /* initialize to silence warning */
|
||||||
Size bufferedTuplesSize = 0;
|
Size bufferedTuplesSize = 0;
|
||||||
|
|
||||||
Assert(cstate->rel);
|
Assert(cstate->rel);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user