From a987d925a17972fdd6c4845a8be109bc8bcdabe9 Mon Sep 17 00:00:00 2001 From: Jinqing Kuang Date: Tue, 25 Feb 2025 11:14:17 +0800 Subject: [PATCH] fix(query)[TD-33833]: fix function projectApplyFunctions for null pointer handling --- source/libs/executor/src/projectoperator.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/libs/executor/src/projectoperator.c b/source/libs/executor/src/projectoperator.c index cb91bae691..eb448a13f5 100644 --- a/source/libs/executor/src/projectoperator.c +++ b/source/libs/executor/src/projectoperator.c @@ -876,7 +876,7 @@ int32_t projectApplyFunctions(SExprInfo* pExpr, SSDataBlock* pResult, SSDataBloc } pResult->info.rows = 1; - TSDB_CHECK_CODE(code, lino, _exit); + goto _exit; } if (pResult != pSrcBlock) {