mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-12-15 08:20:16 +08: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