Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
c0d5f517
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看板
未验证
提交
c0d5f517
编写于
12月 18, 2021
作者:
S
Shengliang Guan
提交者:
GitHub
12月 18, 2021
浏览文件
操作
浏览文件
下载
差异文件
Merge pull request #9181 from taosdata/feature/3.0_wxy
TD-12193 json to physical plan
上级
fceb11b1
48c1390c
变更
5
展开全部
隐藏空白更改
内联
并排
Showing
5 changed file
with
389 addition
and
193 deletion
+389
-193
include/libs/planner/planner.h
include/libs/planner/planner.h
+5
-2
source/libs/planner/inc/plannerInt.h
source/libs/planner/inc/plannerInt.h
+2
-0
source/libs/planner/src/physicalPlan.c
source/libs/planner/src/physicalPlan.c
+10
-1
source/libs/planner/src/physicalPlanJson.c
source/libs/planner/src/physicalPlanJson.c
+368
-190
source/libs/planner/src/planner.c
source/libs/planner/src/planner.c
+4
-0
未找到文件。
include/libs/planner/planner.h
浏览文件 @
c0d5f517
...
...
@@ -128,6 +128,7 @@ typedef struct SSubplan {
}
SSubplan
;
typedef
struct
SQueryDag
{
uint64_t
queryId
;
SArray
*
pSubplans
;
// Element is SArray*, and nested element is SSubplan. The execution level of subplan, starting from 0.
}
SQueryDag
;
...
...
@@ -136,7 +137,7 @@ typedef struct SQueryDag {
*/
int32_t
qCreateQueryDag
(
const
struct
SQueryStmtInfo
*
pQueryInfo
,
struct
SEpSet
*
pQnode
,
struct
SQueryDag
**
pDag
);
int32_t
qSetSu
planExecutionNode
(
SSubplan
*
subplan
,
SArray
*
node
s
);
int32_t
qSetSu
bplanExecutionNode
(
SSubplan
*
subplan
,
SArray
*
ep
s
);
int32_t
qExplainQuery
(
const
struct
SQueryStmtInfo
*
pQueryInfo
,
struct
SEpSet
*
pQnode
,
char
**
str
);
...
...
@@ -147,12 +148,14 @@ int32_t qSubPlanToString(const SSubplan* subplan, char** str);
int32_t
qStringToSubplan
(
const
char
*
str
,
SSubplan
**
subplan
);
void
qDestroySubplan
(
SSubplan
*
pSubplan
);
/**
* Destroy the physical plan.
* @param pQueryPhyNode
* @return
*/
void
qDestroyQueryDag
(
struct
SQueryDag
*
pDag
);
void
qDestroyQueryDag
(
SQueryDag
*
pDag
);
#ifdef __cplusplus
}
...
...
source/libs/planner/inc/plannerInt.h
浏览文件 @
c0d5f517
...
...
@@ -116,6 +116,8 @@ void destroyQueryPlan(struct SQueryPlanNode* pQueryNode);
*/
void
*
destroyQueryPhyPlan
(
struct
SPhyNode
*
pQueryPhyNode
);
int32_t
opNameToOpType
(
const
char
*
name
);
#ifdef __cplusplus
}
#endif
...
...
source/libs/planner/src/physicalPlan.c
浏览文件 @
c0d5f517
...
...
@@ -179,7 +179,7 @@ static SPhyNode* createPhyNode(SPlanContext* pCxt, SQueryPlanNode* pPlanNode) {
assert
(
false
);
}
if
(
pPlanNode
->
pChildren
!=
NULL
&&
taosArrayGetSize
(
pPlanNode
->
pChildren
)
>
0
)
{
node
->
pChildren
=
taosArrayInit
(
4
,
POINTER_BYTES
);
node
->
pChildren
=
taosArrayInit
(
TARRAY_MIN_SIZE
,
POINTER_BYTES
);
size_t
size
=
taosArrayGetSize
(
pPlanNode
->
pChildren
);
for
(
int32_t
i
=
0
;
i
<
size
;
++
i
)
{
SPhyNode
*
child
=
createPhyNode
(
pCxt
,
taosArrayGet
(
pPlanNode
->
pChildren
,
i
));
...
...
@@ -215,3 +215,12 @@ int32_t createDag(SQueryPlanNode* pQueryNode, struct SCatalog* pCatalog, SQueryD
*
pDag
=
context
.
pDag
;
return
TSDB_CODE_SUCCESS
;
}
int32_t
opNameToOpType
(
const
char
*
name
)
{
for
(
int32_t
i
=
1
;
i
<
sizeof
(
gOpName
)
/
sizeof
(
gOpName
[
0
]);
++
i
)
{
if
(
strcmp
(
name
,
gOpName
[
i
]))
{
return
i
;
}
}
return
OP_Unknown
;
}
source/libs/planner/src/physicalPlanJson.c
浏览文件 @
c0d5f517
此差异已折叠。
点击以展开。
source/libs/planner/src/planner.c
浏览文件 @
c0d5f517
...
...
@@ -16,6 +16,10 @@
#include "parser.h"
#include "plannerInt.h"
void
qDestroySubplan
(
SSubplan
*
pSubplan
)
{
// todo
}
void
qDestroyQueryDag
(
struct
SQueryDag
*
pDag
)
{
// todo
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录