mirror of
https://github.com/taosdata/TDengine
synced 2026-05-24 10:09:01 +00:00
13 lines
223 B
C
13 lines
223 B
C
#include "tunaryoperator.h"
|
|
|
|
|
|
|
|
|
|
// TODO dynamic define these functions
|
|
_unary_scalar_fn_t getUnaryScalarOperatorFn(int32_t operator) {
|
|
assert(0);
|
|
}
|
|
|
|
bool isStringOperatorFn(int32_t op) {
|
|
return op == FUNCTION_LENGTH;
|
|
}
|