fix: windows compile error

This commit is contained in:
dapan1121 2023-11-10 17:29:52 +08:00
parent a8de040af2
commit 8bcb7f8741
1 changed files with 1 additions and 1 deletions

View File

@ -29,7 +29,7 @@ int32_t doValidatePhysiNode(SValidatePlanContext* pCxt, SNode* pNode);
int32_t validateMergePhysiNode(SValidatePlanContext* pCxt, SMergePhysiNode* pMerge) {
if ((NULL != pMerge->node.pLimit || NULL != pMerge->node.pSlimit) && pMerge->type == MERGE_TYPE_NON_SORT) {
planError("no limit&slimit supported for non sort merge");
planError("no limit&slimit supported for non sort merge, pLimit:%p", pMerge->node.pLimit);
return TSDB_CODE_PLAN_INTERNAL_ERROR;
}