From f7fb674ae98389aa9dab22aed01f582cfc3d8425 Mon Sep 17 00:00:00 2001 From: dapan1121 Date: Thu, 13 Mar 2025 14:39:46 +0800 Subject: [PATCH] fix: windows compile issue --- source/libs/planner/src/planPhysiCreater.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/libs/planner/src/planPhysiCreater.c b/source/libs/planner/src/planPhysiCreater.c index af6b15f58f..11cb94683b 100644 --- a/source/libs/planner/src/planPhysiCreater.c +++ b/source/libs/planner/src/planPhysiCreater.c @@ -957,7 +957,7 @@ static int32_t setMergeJoinPrimColEqCond(SNode* pEqCond, int32_t subType, int16_ break; } - planError("value node got in prim eq left cond"); + planError("value node got in prim eq left cond, rightType:%d", pOp->pRight ? nodeType(pOp->pRight) : 0); return TSDB_CODE_PLAN_INTERNAL_ERROR; } case QUERY_NODE_FUNCTION: { @@ -1015,7 +1015,7 @@ static int32_t setMergeJoinPrimColEqCond(SNode* pEqCond, int32_t subType, int16_ break; } - planError("value node got in prim eq right cond"); + planError("value node got in prim eq right cond, leftType:%d", pOp->pLeft ? nodeType(pOp->pLeft) : 0); return TSDB_CODE_PLAN_INTERNAL_ERROR; } case QUERY_NODE_FUNCTION: {