Style fix

pull/7665/head
eaydingol 2024-07-30 09:34:26 +00:00
parent 7f2c420da9
commit 6907148561
1 changed files with 1 additions and 2 deletions

View File

@ -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,