Merge pull request #16053 from taosdata/feature/3_liaohj

fix(query): return error code instead of assert.
This commit is contained in:
Haojun Liao 2022-08-12 18:48:24 +08:00 committed by GitHub
commit d08841d747
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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); taosArrayDestroy(pBlockList);
} }
} else { } else {
ASSERT(0); return TSDB_CODE_OPS_NOT_SUPPORT;
} }
} }