From 9fa1ac534dfbd7665172240058b7d8cc9ce4065f Mon Sep 17 00:00:00 2001 From: factosea <285808407@qq.com> Date: Wed, 15 Jan 2025 17:54:39 +0800 Subject: [PATCH] enh: elapsed sma --- source/libs/function/src/builtinsimpl.c | 1 + 1 file changed, 1 insertion(+) diff --git a/source/libs/function/src/builtinsimpl.c b/source/libs/function/src/builtinsimpl.c index 0f6db39cc8..efe16ce662 100644 --- a/source/libs/function/src/builtinsimpl.c +++ b/source/libs/function/src/builtinsimpl.c @@ -784,6 +784,7 @@ static bool funcNotSupportStringSma(SFunctionNode* pFunc) { case FUNCTION_TYPE_SPREAD_PARTIAL: case FUNCTION_TYPE_SPREAD_MERGE: case FUNCTION_TYPE_TWA: + case FUNCTION_TYPE_ELAPSED: pParam = nodesListGetNode(pFunc->pParameterList, 0); if (pParam && nodesIsExprNode(pParam) && (IS_VAR_DATA_TYPE(((SExprNode*)pParam)->resType.type))) { return true;