Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
9b76c49d
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看板
提交
9b76c49d
编写于
2月 15, 2021
作者:
H
Haojun Liao
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[td-225] refactor
上级
9b224d9b
变更
3
展开全部
隐藏空白更改
内联
并排
Showing
3 changed file
with
480 addition
and
181 deletion
+480
-181
src/query/inc/qExecutor.h
src/query/inc/qExecutor.h
+23
-6
src/query/src/qAggMain.c
src/query/src/qAggMain.c
+1
-1
src/query/src/qExecutor.c
src/query/src/qExecutor.c
+456
-174
未找到文件。
src/query/inc/qExecutor.h
浏览文件 @
9b76c49d
...
@@ -235,15 +235,19 @@ typedef struct SQuery {
...
@@ -235,15 +235,19 @@ typedef struct SQuery {
void
*
tsdb
;
void
*
tsdb
;
SMemRef
memRef
;
SMemRef
memRef
;
STableGroupInfo
tableGroupInfo
;
// table <tid, last_key> list SArray<STableKeyInfo>
STableGroupInfo
tableGroupInfo
;
// table <tid, last_key> list SArray<STableKeyInfo>
int32_t
vgId
;
}
SQuery
;
}
SQuery
;
typedef
SSDataBlock
*
(
*
__operator_fn_t
)(
void
*
param
);
typedef
SSDataBlock
*
(
*
__operator_fn_t
)(
void
*
param
);
typedef
struct
SOperatorInfo
{
typedef
struct
SOperatorInfo
{
char
*
name
;
char
*
name
;
bool
blockingOptr
;
bool
blockingOptr
;
void
*
optInfo
;
bool
completed
;
void
*
optInfo
;
SExprInfo
*
pExpr
;
int32_t
numOfOutput
;
__operator_fn_t
exec
;
__operator_fn_t
exec
;
struct
SOperatorInfo
*
upstream
;
struct
SOperatorInfo
*
upstream
;
}
SOperatorInfo
;
}
SOperatorInfo
;
...
@@ -284,6 +288,7 @@ typedef struct SQueryRuntimeEnv {
...
@@ -284,6 +288,7 @@ typedef struct SQueryRuntimeEnv {
int32_t
groupIndex
;
int32_t
groupIndex
;
int32_t
tableIndex
;
int32_t
tableIndex
;
STableGroupInfo
tableqinfoGroupInfo
;
// this is a group array list, including SArray<STableQueryInfo*> structure
STableGroupInfo
tableqinfoGroupInfo
;
// this is a group array list, including SArray<STableQueryInfo*> structure
SOperatorInfo
*
proot
;
}
SQueryRuntimeEnv
;
}
SQueryRuntimeEnv
;
typedef
struct
{
typedef
struct
{
...
@@ -301,8 +306,6 @@ typedef struct SQInfo {
...
@@ -301,8 +306,6 @@ typedef struct SQInfo {
int32_t
code
;
// error code to returned to client
int32_t
code
;
// error code to returned to client
int64_t
owner
;
// if it is in execution
int64_t
owner
;
// if it is in execution
int32_t
vgId
;
SQueryRuntimeEnv
runtimeEnv
;
SQueryRuntimeEnv
runtimeEnv
;
SQuery
query
;
SQuery
query
;
...
@@ -365,13 +368,27 @@ typedef struct SAggOperatorInfo {
...
@@ -365,13 +368,27 @@ typedef struct SAggOperatorInfo {
SResultRowInfo
*
pResultRowInfo
;
SResultRowInfo
*
pResultRowInfo
;
STableQueryInfo
*
pTableQueryInfo
;
STableQueryInfo
*
pTableQueryInfo
;
SQueryRuntimeEnv
*
pRuntimeEnv
;
SQueryRuntimeEnv
*
pRuntimeEnv
;
SQLFunctionCtx
*
pCtx
;
}
SAggOperatorInfo
;
}
SAggOperatorInfo
;
typedef
struct
SArithOperatorInfo
{
typedef
struct
SArithOperatorInfo
{
STableQueryInfo
*
pTableQueryInfo
;
STableQueryInfo
*
pTableQueryInfo
;
SQueryRuntimeEnv
*
pRuntimeEnv
;
SQueryRuntimeEnv
*
pRuntimeEnv
;
SQLFunctionCtx
*
pCtx
;
}
SArithOperatorInfo
;
}
SArithOperatorInfo
;
typedef
struct
SLimitOperatorInfo
{
int64_t
limit
;
int64_t
total
;
SQueryRuntimeEnv
*
pRuntimeEnv
;
}
SLimitOperatorInfo
;
typedef
struct
SOffsetOperatorInfo
{
int64_t
offset
;
int64_t
currentOffset
;
SQueryRuntimeEnv
*
pRuntimeEnv
;
}
SOffsetOperatorInfo
;
void
freeParam
(
SQueryParam
*
param
);
void
freeParam
(
SQueryParam
*
param
);
int32_t
convertQueryMsg
(
SQueryTableMsg
*
pQueryMsg
,
SQueryParam
*
param
);
int32_t
convertQueryMsg
(
SQueryTableMsg
*
pQueryMsg
,
SQueryParam
*
param
);
int32_t
createQueryFuncExprFromMsg
(
SQueryTableMsg
*
pQueryMsg
,
int32_t
numOfOutput
,
SExprInfo
**
pExprInfo
,
SSqlFuncMsg
**
pExprMsg
,
int32_t
createQueryFuncExprFromMsg
(
SQueryTableMsg
*
pQueryMsg
,
int32_t
numOfOutput
,
SExprInfo
**
pExprInfo
,
SSqlFuncMsg
**
pExprMsg
,
...
...
src/query/src/qAggMain.c
浏览文件 @
9b76c49d
...
@@ -3564,7 +3564,7 @@ char *getArithColumnData(void *param, const char* name, int32_t colId) {
...
@@ -3564,7 +3564,7 @@ char *getArithColumnData(void *param, const char* name, int32_t colId) {
}
}
}
}
assert
(
index
>=
0
&&
colId
>=
0
);
assert
(
index
>=
0
/*&& colId >= 0*/
);
return
pSupport
->
data
[
index
]
+
pSupport
->
offset
*
pSupport
->
colList
[
index
].
bytes
;
return
pSupport
->
data
[
index
]
+
pSupport
->
offset
*
pSupport
->
colList
[
index
].
bytes
;
}
}
...
...
src/query/src/qExecutor.c
浏览文件 @
9b76c49d
此差异已折叠。
点击以展开。
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录