From 97285d6a2a91316b0ed33bdb28f0b0a85f39dfc9 Mon Sep 17 00:00:00 2001 From: shenglian zhou Date: Thu, 4 Nov 2021 10:53:21 +0800 Subject: [PATCH] add result type and result bytes to tExprNode before validate types and exprNodeTraverse function --- src/common/inc/texpr.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/common/inc/texpr.h b/src/common/inc/texpr.h index 58dcbf1404..26751c74fb 100644 --- a/src/common/inc/texpr.h +++ b/src/common/inc/texpr.h @@ -114,6 +114,8 @@ typedef struct tExprNode { struct tExprNode** pChildren; } _func; }; + int16_t resultType; + int16_t resultBytes; } tExprNode; typedef struct SExprTraverseSupp { -- GitLab