fix: a problem of parser async
This commit is contained in:
parent
bc6326788a
commit
7ede8db3c4
|
@ -226,6 +226,9 @@ static SColumnNode* createColumnByFunc(const SFunctionNode* pFunc) {
|
|||
}
|
||||
|
||||
bool fmIsDistExecFunc(int32_t funcId) {
|
||||
if (fmIsUserDefinedFunc(funcId)) {
|
||||
return false;
|
||||
}
|
||||
if (!fmIsVectorFunc(funcId)) {
|
||||
return true;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue