mirror of https://github.com/citusdata/citus.git
Style fix
parent
7f2c420da9
commit
6907148561
|
@ -4762,7 +4762,6 @@ WorkerLimitCount(Node *limitCount, Node *limitOffset, OrderByLimitReference
|
||||||
workerLimitCount = workerLimitCount + workerOffsetCount;
|
workerLimitCount = workerLimitCount + workerOffsetCount;
|
||||||
workerLimitNode = (Node *) MakeIntegerConstInt64(workerLimitCount);
|
workerLimitNode = (Node *) MakeIntegerConstInt64(workerLimitCount);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* display debug message on limit push down */
|
/* display debug message on limit push down */
|
||||||
|
@ -4770,7 +4769,7 @@ WorkerLimitCount(Node *limitCount, Node *limitOffset, OrderByLimitReference
|
||||||
{
|
{
|
||||||
Const *workerLimitConst = (Const *) workerLimitNode;
|
Const *workerLimitConst = (Const *) workerLimitNode;
|
||||||
if (!workerLimitConst->constisnull)
|
if (!workerLimitConst->constisnull)
|
||||||
{
|
{
|
||||||
int64 workerLimitCount = DatumGetInt64(workerLimitConst->constvalue);
|
int64 workerLimitCount = DatumGetInt64(workerLimitConst->constvalue);
|
||||||
|
|
||||||
ereport(DEBUG1, (errmsg("push down of limit count: " INT64_FORMAT,
|
ereport(DEBUG1, (errmsg("push down of limit count: " INT64_FORMAT,
|
||||||
|
|
Loading…
Reference in New Issue