Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
c5d972fa
T
TDengine
项目概览
taosdata
/
TDengine
1 年多 前同步成功
通知
1185
Star
22016
Fork
4786
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
1
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
T
TDengine
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
1
Issue
1
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
c5d972fa
编写于
11月 02, 2021
作者:
S
shenglian zhou
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
begin to add more math functions
上级
27c94691
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
16 addition
and
18 deletion
+16
-18
src/common/inc/texpr.h
src/common/inc/texpr.h
+4
-3
src/common/src/texpr.c
src/common/src/texpr.c
+12
-15
未找到文件。
src/common/inc/texpr.h
浏览文件 @
c5d972fa
...
...
@@ -57,19 +57,20 @@ typedef struct {
char
*
data
;
}
tExprOperandInfo
;
typedef
void
(
*
_expr_scalar_function_t
)(
tExprOperandInfo
*
pInputs
,
uint8_t
numInputs
,
tExprOperandInfo
*
pOutput
,
int32_t
order
);
typedef
void
(
*
_expr_scalar_function_t
)(
int16_t
functionId
,
tExprOperandInfo
*
pInputs
,
uint8_t
numInputs
,
tExprOperandInfo
*
pOutput
,
int32_t
order
);
_expr_scalar_function_t
getExprScalarFunction
(
uint16_t
scalar
);
typedef
struct
tScalarFunctionInfo
{
int16_t
functionId
;
// scalar function id & ~TSDB_FUNC_FLAG_SCALAR == index
char
name
[
TSDB_FUNC_SCALAR_NAME_MAX_LEN
];
_expr_scalar_function_t
scalarFunc
;
}
tScalarFunctionInfo
;
/* global scalar sql functions array */
extern
struct
tScalarFunctionInfo
aScalarFunctions
[
TSDB_FUNC_SCALAR_MAX_NUM
];
typedef
bool
(
*
__result_filter_fn_t
)(
const
void
*
,
void
*
);
typedef
void
(
*
__do_filter_suppl_fn_t
)(
void
*
,
void
*
);
...
...
src/common/src/texpr.c
浏览文件 @
c5d972fa
...
...
@@ -265,7 +265,7 @@ void exprTreeFunctionNodeTraverse(tExprNode *pExpr, int32_t numOfRows, char *pOu
output
.
type
=
TSDB_DATA_TYPE_DOUBLE
;
output
.
bytes
=
tDataTypes
[
TSDB_DATA_TYPE_DOUBLE
].
bytes
;
scalarFn
(
pInputs
,
numChildren
,
&
output
,
order
);
scalarFn
(
p
Expr
->
_func
.
functionId
,
p
Inputs
,
numChildren
,
&
output
,
order
);
for
(
int
i
=
0
;
i
<
numChildren
;
++
i
)
{
tfree
(
pChildrenOutput
[
i
]);
...
...
@@ -744,7 +744,7 @@ tExprNode* exprdup(tExprNode* pNode) {
}
void
vectorPow
(
tExprOperandInfo
*
pInputs
,
uint8_t
numInputs
,
tExprOperandInfo
*
pOutput
,
int32_t
order
)
{
void
vectorPow
(
int16_t
functionId
,
tExprOperandInfo
*
pInputs
,
uint8_t
numInputs
,
tExprOperandInfo
*
pOutput
,
int32_t
order
)
{
assert
(
numInputs
==
2
);
assert
(
pInputs
[
1
].
numOfRows
==
1
&&
pInputs
[
0
].
numOfRows
>=
1
);
int
numOfRows
=
pInputs
[
0
].
numOfRows
;
...
...
@@ -766,7 +766,7 @@ void vectorPow(tExprOperandInfo* pInputs, uint8_t numInputs, tExprOperandInfo* p
}
}
void
vectorLog
(
tExprOperandInfo
*
pInputs
,
uint8_t
numInputs
,
tExprOperandInfo
*
pOutput
,
int32_t
order
)
{
void
vectorLog
(
int16_t
functionId
,
tExprOperandInfo
*
pInputs
,
uint8_t
numInputs
,
tExprOperandInfo
*
pOutput
,
int32_t
order
)
{
assert
(
numInputs
==
2
);
assert
(
pInputs
[
1
].
numOfRows
==
1
&&
pInputs
[
0
].
numOfRows
>=
1
);
int
numOfRows
=
pInputs
[
0
].
numOfRows
;
...
...
@@ -789,25 +789,22 @@ void vectorLog(tExprOperandInfo* pInputs, uint8_t numInputs, tExprOperandInfo* p
}
_expr_scalar_function_t
getExprScalarFunction
(
uint16_t
scalarFunc
)
{
switch
(
scalarFunc
)
{
case
TSDB_FUNC_SCALAR_POW
:
return
vectorPow
;
case
TSDB_FUNC_SCALAR_LOG
:
return
vectorLog
;
default:
assert
(
0
);
return
NULL
;
}
_expr_scalar_function_t
getExprScalarFunction
(
uint16_t
funcId
)
{
assert
(
TSDB_FUNC_IS_SCALAR
(
funcId
));
int16_t
scalaIdx
=
TSDB_FUNC_SCALAR_INDEX
(
funcId
);
assert
(
scalaIdx
>=
0
&&
scalaIdx
<=
TSDB_FUNC_SCALAR_MAX_NUM
);
return
aScalarFunctions
[
scalaIdx
].
scalarFunc
;
}
tScalarFunctionInfo
aScalarFunctions
[]
=
{
{
TSDB_FUNC_SCALAR_POW
,
"pow"
"pow"
,
vectorPow
},
{
TSDB_FUNC_SCALAR_LOG
,
"log"
"log"
,
vectorLog
},
};
\ No newline at end of file
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录