fix: a problem of parser async

This commit is contained in:
Xiaoyu Wang 2022-06-04 09:33:13 +08:00
parent bc6326788a
commit 7ede8db3c4
1 changed files with 3 additions and 0 deletions

View File

@ -226,6 +226,9 @@ static SColumnNode* createColumnByFunc(const SFunctionNode* pFunc) {
} }
bool fmIsDistExecFunc(int32_t funcId) { bool fmIsDistExecFunc(int32_t funcId) {
if (fmIsUserDefinedFunc(funcId)) {
return false;
}
if (!fmIsVectorFunc(funcId)) { if (!fmIsVectorFunc(funcId)) {
return true; return true;
} }