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