fix(query): fix bug in multi-input math functions
This commit is contained in:
parent
b70c019824
commit
ad93fc6344
|
@ -21,8 +21,9 @@ static double tlog(double v, double base) {
|
|||
return a;
|
||||
} else if (isnan(b) || isinf(b)) {
|
||||
return b;
|
||||
} else {
|
||||
return a / b;
|
||||
}
|
||||
return a / b;
|
||||
}
|
||||
|
||||
int32_t absFunction(SScalarParam *pInput, int32_t inputNum, SScalarParam *pOutput) {
|
||||
|
|
Loading…
Reference in New Issue