Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
79f00555
T
TDengine
项目概览
taosdata
/
TDengine
1 年多 前同步成功
通知
1185
Star
22017
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看板
提交
79f00555
编写于
8月 12, 2022
作者:
X
Xiaoyu Wang
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix: fill clause error
上级
2ad70dff
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
23 addition
and
4 deletion
+23
-4
source/libs/planner/src/planLogicCreater.c
source/libs/planner/src/planLogicCreater.c
+20
-4
source/libs/planner/test/planIntervalTest.cpp
source/libs/planner/test/planIntervalTest.cpp
+3
-0
未找到文件。
source/libs/planner/src/planLogicCreater.c
浏览文件 @
79f00555
...
...
@@ -798,13 +798,13 @@ static bool needFillValue(SNode* pNode) {
return
hasFillCol
;
}
static
int32_t
partFillExprs
(
S
NodeList
*
pProjectionLis
t
,
SNodeList
**
pFillExprs
,
SNodeList
**
pNotFillExprs
)
{
static
int32_t
partFillExprs
(
S
SelectStmt
*
pSelec
t
,
SNodeList
**
pFillExprs
,
SNodeList
**
pNotFillExprs
)
{
int32_t
code
=
TSDB_CODE_SUCCESS
;
SNode
*
pProject
=
NULL
;
FOREACH
(
pProject
,
pProjectionList
)
{
FOREACH
(
pProject
,
p
Select
->
p
ProjectionList
)
{
if
(
needFillValue
(
pProject
))
{
code
=
nodesListMakeStrictAppend
(
pFillExprs
,
nodesCloneNode
(
pProject
));
}
else
{
}
else
if
(
QUERY_NODE_VALUE
!=
nodeType
(
pProject
))
{
code
=
nodesListMakeStrictAppend
(
pNotFillExprs
,
nodesCloneNode
(
pProject
));
}
if
(
TSDB_CODE_SUCCESS
!=
code
)
{
...
...
@@ -813,6 +813,22 @@ static int32_t partFillExprs(SNodeList* pProjectionList, SNodeList** pFillExprs,
break
;
}
}
if
(
!
pSelect
->
isDistinct
)
{
SNode
*
pOrderExpr
=
NULL
;
FOREACH
(
pOrderExpr
,
pSelect
->
pOrderByList
)
{
SNode
*
pExpr
=
((
SOrderByExprNode
*
)
pOrderExpr
)
->
pExpr
;
if
(
needFillValue
(
pExpr
))
{
code
=
nodesListMakeStrictAppend
(
pFillExprs
,
nodesCloneNode
(
pExpr
));
}
else
if
(
QUERY_NODE_VALUE
!=
nodeType
(
pExpr
))
{
code
=
nodesListMakeStrictAppend
(
pNotFillExprs
,
nodesCloneNode
(
pExpr
));
}
if
(
TSDB_CODE_SUCCESS
!=
code
)
{
NODES_DESTORY_LIST
(
*
pFillExprs
);
NODES_DESTORY_LIST
(
*
pNotFillExprs
);
break
;
}
}
}
return
code
;
}
...
...
@@ -837,7 +853,7 @@ static int32_t createFillLogicNode(SLogicPlanContext* pCxt, SSelectStmt* pSelect
pFill
->
node
.
resultDataOrder
=
pFill
->
node
.
requireDataOrder
;
pFill
->
inputTsOrder
=
ORDER_ASC
;
int32_t
code
=
partFillExprs
(
pSelect
->
pProjectionList
,
&
pFill
->
pFillExprs
,
&
pFill
->
pNotFillExprs
);
int32_t
code
=
partFillExprs
(
pSelect
,
&
pFill
->
pFillExprs
,
&
pFill
->
pNotFillExprs
);
if
(
TSDB_CODE_SUCCESS
==
code
)
{
code
=
rewriteExprsForSelect
(
pFill
->
pFillExprs
,
pSelect
,
SQL_CLAUSE_FILL
);
}
...
...
source/libs/planner/test/planIntervalTest.cpp
浏览文件 @
79f00555
...
...
@@ -51,6 +51,9 @@ TEST_F(PlanIntervalTest, fill) {
run
(
"SELECT COUNT(c1), MAX(c3), COUNT(c1) FROM t1 "
"WHERE ts > '2022-04-01 00:00:00' and ts < '2022-04-30 23:59:59' INTERVAL(10s) FILL(PREV)"
);
run
(
"SELECT COUNT(c1) FROM t1 WHERE ts > '2022-04-01 00:00:00' and ts < '2022-04-30 23:59:59' "
"PARTITION BY c2 INTERVAL(10s) FILL(PREV) ORDER BY c2"
);
}
TEST_F
(
PlanIntervalTest
,
selectFunc
)
{
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录