Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
88970c88
TDengine
项目概览
taosdata
/
TDengine
1 年多 前同步成功
通知
1185
Star
22016
Fork
4786
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
1
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
TDengine
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
1
Issue
1
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
88970c88
编写于
2月 15, 2023
作者:
5
54liuyao
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix:dispatch create sub table
上级
605b5012
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
19 addition
and
3 deletion
+19
-3
source/dnode/vnode/src/tq/tqSink.c
source/dnode/vnode/src/tq/tqSink.c
+1
-1
source/libs/executor/src/groupoperator.c
source/libs/executor/src/groupoperator.c
+2
-2
source/libs/executor/src/timewindowoperator.c
source/libs/executor/src/timewindowoperator.c
+1
-0
tests/script/tsim/stream/checkStreamSTable.sim
tests/script/tsim/stream/checkStreamSTable.sim
+15
-0
未找到文件。
source/dnode/vnode/src/tq/tqSink.c
浏览文件 @
88970c88
...
...
@@ -498,7 +498,7 @@ void tqSinkToTablePipeline2(SStreamTask* pTask, void* vnode, int64_t ver, void*
taosArrayPush
(
tagArray
,
&
tagVal
);
}
}
pCreateTbReq
->
ctb
.
tagNum
=
taosArrayGetSize
(
tagArray
)
;
pCreateTbReq
->
ctb
.
tagNum
=
size
;
STag
*
pTag
=
NULL
;
tTagNew
(
tagArray
,
1
,
false
,
&
pTag
);
...
...
source/libs/executor/src/groupoperator.c
浏览文件 @
88970c88
...
...
@@ -1013,7 +1013,7 @@ void appendCreateTableRow(SStreamState* pState, SExprSupp* pTableSup, SExprSupp*
void
*
pGpIdCol
=
taosArrayGet
(
pDestBlock
->
pDataBlock
,
UD_GROUPID_COLUMN_INDEX
);
colDataAppend
(
pGpIdCol
,
pDestBlock
->
info
.
rows
,
(
const
char
*
)
&
groupId
,
false
);
pDestBlock
->
info
.
id
.
groupId
=
groupId
;
pDestBlock
->
info
.
rows
++
;
blockDataDestroy
(
pTmpBlock
);
}
...
...
@@ -1030,7 +1030,7 @@ static SSDataBlock* buildStreamCreateTableResult(SOperatorInfo* pOperator) {
blockDataEnsureCapacity
(
pInfo
->
pCreateTbRes
,
taosHashGetSize
(
pInfo
->
pPartitions
));
SSDataBlock
*
pSrc
=
pInfo
->
pInputDataBlock
;
while
(
pInfo
->
pTbNameIte
!=
NULL
)
{
if
(
pInfo
->
pTbNameIte
!=
NULL
)
{
SPartitionDataInfo
*
pParInfo
=
(
SPartitionDataInfo
*
)
pInfo
->
pTbNameIte
;
int32_t
rowId
=
*
(
int32_t
*
)
taosArrayGet
(
pParInfo
->
rowIds
,
0
);
appendCreateTableRow
(
pOperator
->
pTaskInfo
->
streamInfo
.
pState
,
&
pInfo
->
tbnameCalSup
,
&
pInfo
->
tagCalSup
,
...
...
source/libs/executor/src/timewindowoperator.c
浏览文件 @
88970c88
...
...
@@ -4778,6 +4778,7 @@ static SSDataBlock* doStreamIntervalAgg(SOperatorInfo* pOperator) {
getAllIntervalWindow
(
pInfo
->
aggSup
.
pResultRowHashTable
,
pInfo
->
pUpdatedMap
);
continue
;
}
else
if
(
pBlock
->
info
.
type
==
STREAM_CREATE_CHILD_TABLE
)
{
printDataBlock
(
pBlock
,
"single interval"
);
return
pBlock
;
}
else
{
ASSERTS
(
pBlock
->
info
.
type
==
STREAM_NORMAL
||
pBlock
->
info
.
type
==
STREAM_INVALID
,
"invalid SSDataBlock type"
);
...
...
tests/script/tsim/stream/checkStreamSTable.sim
浏览文件 @
88970c88
...
...
@@ -261,6 +261,21 @@ if $data04 != NULL then
goto loop2
endi
print ===== drop ...
sql drop stream if exists streams0;
sql drop stream if exists streams1;
sql drop stream if exists streams2;
sql drop stream if exists streams3;
sql drop database if exists test;
sql drop database if exists test1;
sql drop database if exists test2;
sql drop database if exists test3;
sql drop database if exists result;
sql drop database if exists result1;
sql drop database if exists result2;
sql drop database if exists result3;
print ===== step6
sql create database result4 vgroups 1;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录