Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
1c6991d4
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看板
提交
1c6991d4
编写于
3月 29, 2021
作者:
D
dapan1121
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix windows compile error
上级
d9853b48
变更
5
隐藏空白更改
内联
并排
Showing
5 changed file
with
8 addition
and
8 deletion
+8
-8
src/client/src/tscSQLParser.c
src/client/src/tscSQLParser.c
+2
-2
src/client/src/tscServer.c
src/client/src/tscServer.c
+1
-1
src/mnode/src/mnodeFunc.c
src/mnode/src/mnodeFunc.c
+2
-2
src/query/inc/qUdf.h
src/query/inc/qUdf.h
+1
-1
src/query/src/qExecutor.c
src/query/src/qExecutor.c
+2
-2
未找到文件。
src/client/src/tscSQLParser.c
浏览文件 @
1c6991d4
...
...
@@ -1757,7 +1757,7 @@ void genUdfList(SArray* pUdfInfo, tSqlExpr *pNode) {
if
(
pNode
->
functionId
<
0
)
{
// extract all possible user defined function
struct
SUdfInfo
info
=
{
0
};
info
.
name
=
strndup
(
pNode
->
operand
.
z
,
pNode
->
operand
.
n
);
int32_t
functionId
=
taosArrayGetSize
(
pUdfInfo
)
*
(
-
1
)
-
1
;
int32_t
functionId
=
(
int32_t
)
taosArrayGetSize
(
pUdfInfo
)
*
(
-
1
)
-
1
;
info
.
functionId
=
functionId
;
taosArrayPush
(
pUdfInfo
,
&
info
);
...
...
@@ -3212,7 +3212,7 @@ static bool functionCompatibleCheck(SSqlCmd* pCmd, SQueryInfo* pQueryInfo, bool
}
}
aggNum
=
size
-
prjNum
-
aggUdf
-
scalarUdf
;
aggNum
=
(
int32_t
)
size
-
prjNum
-
aggUdf
-
scalarUdf
;
assert
(
aggNum
>=
0
);
...
...
src/client/src/tscServer.c
浏览文件 @
1c6991d4
...
...
@@ -1867,7 +1867,7 @@ int tscBuildRetrieveFuncMsg(SSqlObj *pSql, SSqlInfo *pInfo) {
SSqlCmd
*
pCmd
=
&
pSql
->
cmd
;
char
*
pMsg
=
pCmd
->
payload
;
int32_t
numOfFuncs
=
taosArrayGetSize
(
pCmd
->
pUdfInfo
);
int32_t
numOfFuncs
=
(
int32_t
)
taosArrayGetSize
(
pCmd
->
pUdfInfo
);
SRetrieveFuncMsg
*
pRetrieveFuncMsg
=
(
SRetrieveFuncMsg
*
)
pMsg
;
pRetrieveFuncMsg
->
num
=
htonl
(
numOfFuncs
);
...
...
src/mnode/src/mnodeFunc.c
浏览文件 @
1c6991d4
...
...
@@ -459,10 +459,10 @@ static int32_t mnodeProcessRetrieveFuncImplMsg(SMnodeMsg *pMsg) {
pFuncInfo
->
resBytes
=
htons
(
pFuncObj
->
resBytes
);
pOutput
+=
sizeof
(
SFunctionInfoMsg
)
+
pFuncObj
->
contLen
;
name
=
(
void
*
)
name
+
sizeof
(
*
name
)
+
htons
(
name
->
len
);
name
=
(
tstr
*
)((
char
*
)
name
+
sizeof
(
*
name
)
+
htons
(
name
->
len
)
);
}
pMsg
->
rpcRsp
.
rsp
=
pFuncMsg
;
pMsg
->
rpcRsp
.
len
=
(
pOutput
-
(
char
*
)
pFuncMsg
);
pMsg
->
rpcRsp
.
len
=
(
int32_t
)(
pOutput
-
(
char
*
)
pFuncMsg
);
return
TSDB_CODE_SUCCESS
;
}
src/query/inc/qUdf.h
浏览文件 @
1c6991d4
...
...
@@ -45,7 +45,7 @@ typedef struct SUdfInfo {
};
}
SUdfInfo
;
typedef
void
(
*
udfNormalFunc
)(
char
*
data
,
int
8
_t
type
,
int32_t
numOfRows
,
int64_t
*
ts
,
char
*
dataOutput
,
char
*
tsOutput
,
typedef
void
(
*
udfNormalFunc
)(
char
*
data
,
int
16
_t
type
,
int32_t
numOfRows
,
int64_t
*
ts
,
char
*
dataOutput
,
char
*
tsOutput
,
int32_t
*
numOfOutput
,
SUdfInit
*
buf
);
typedef
int32_t
(
*
udfInitFunc
)(
SUdfInit
*
data
);
typedef
void
(
*
udfFinalizeFunc
)(
char
*
dataOutput
,
int32_t
*
numOfOutput
,
SUdfInit
*
buf
);
...
...
src/query/src/qExecutor.c
浏览文件 @
1c6991d4
...
...
@@ -779,8 +779,8 @@ static void doInvokeUdf(SQueryRuntimeEnv *pRuntimeEnv, SQLFunctionCtx *pCtx, int
if
(
pUdfInfo
&&
pUdfInfo
->
funcs
[
TSDB_UDF_FUNC_NORMAL
])
{
qDebug
(
"invoke udf function:%s,%p"
,
pUdfInfo
->
name
,
pUdfInfo
->
funcs
[
TSDB_UDF_FUNC_NORMAL
]);
(
*
(
udfNormalFunc
)
pUdfInfo
->
funcs
[
TSDB_UDF_FUNC_NORMAL
])(
pCtx
->
pInput
+
idx
*
pCtx
->
inputType
,
pCtx
->
inputType
,
pCtx
->
size
,
pCtx
->
ptsList
,
pCtx
->
pOutput
,
pCtx
->
ptsOutputBuf
,
&
output
,
&
pUdfInfo
->
init
);
(
*
(
udfNormalFunc
)
pUdfInfo
->
funcs
[
TSDB_UDF_FUNC_NORMAL
])(
(
char
*
)
pCtx
->
pInput
+
idx
*
pCtx
->
inputType
,
pCtx
->
inputType
,
pCtx
->
size
,
pCtx
->
ptsList
,
pCtx
->
pOutput
,
(
char
*
)
pCtx
->
ptsOutputBuf
,
&
output
,
&
pUdfInfo
->
init
);
// set the output value exist
pCtx
->
resultInfo
->
numOfRes
+=
output
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录