TDengine/source/libs/function/src/tunaryoperator.c

14 lines
223 B
C
Raw Normal View History

#include "tunaryoperator.h"
// TODO dynamic define these functions
_unary_scalar_fn_t getUnaryScalarOperatorFn(int32_t operator) {
assert(0);
}
2021-11-01 05:03:57 +00:00
bool isStringOperatorFn(int32_t op) {
return op == FUNCTION_LENGTH;
2021-11-01 05:03:57 +00:00
}