fix(query): return error code instead of assert.

This commit is contained in:
Haojun Liao 2022-08-12 17:37:55 +08:00
parent b85c06b4ad
commit 77b109dfdc
1 changed files with 1 additions and 1 deletions

View File

@ -716,7 +716,7 @@ int32_t projectApplyFunctions(SExprInfo* pExpr, SSDataBlock* pResult, SSDataBloc
taosArrayDestroy(pBlockList);
}
} else {
ASSERT(0);
return TSDB_CODE_OPS_NOT_SUPPORT;
}
}