mirror of https://github.com/citusdata/citus.git
Fix unlimited copy size variable's value
parent
16b821efba
commit
f339d6e264
|
@ -245,7 +245,7 @@ static bool
|
|||
ReceiveCopyData(StringInfo copyData)
|
||||
{
|
||||
bool copyDone = true;
|
||||
const int unlimitedSize = 0;
|
||||
const int unlimitedSize = PQ_LARGE_MESSAGE_LIMIT;
|
||||
|
||||
HOLD_CANCEL_INTERRUPTS();
|
||||
pq_startmsgread();
|
||||
|
|
Loading…
Reference in New Issue