Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
6519ef90
T
TDengine
项目概览
taosdata
/
TDengine
大约 1 年 前同步成功
通知
1184
Star
22015
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看板
体验新版 GitCode,发现更多精彩内容 >>
提交
6519ef90
编写于
2月 02, 2023
作者:
5
54liuyao
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
ci:add stream ci
上级
2783d914
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
149 addition
and
0 deletion
+149
-0
tests/script/tsim/stream/udTableAndTag2.sim
tests/script/tsim/stream/udTableAndTag2.sim
+149
-0
未找到文件。
tests/script/tsim/stream/udTableAndTag2.sim
浏览文件 @
6519ef90
...
@@ -361,6 +361,155 @@ if $data02 != NULL then
...
@@ -361,6 +361,155 @@ if $data02 != NULL then
goto loop8
goto loop8
endi
endi
print ===== step6
print ===== table name
sql create database result5 vgroups 1;
sql create database test5 vgroups 1;
sql use test5;
sql create stable st(ts timestamp,a int,b int,c int) tags(ta int,tb int,tc int);
sql create table t1 using st tags(1,1,1);
sql create table t2 using st tags(2,2,2);
sql create stream streams51 trigger at_once into result5.streamt51 SUBTABLE("aaa") as select _wstart, count(*) c1 from st interval(10s);
sql create stream streams52 trigger at_once into result5.streamt52 TAGS(cc varchar(100)) as select _wstart, count(*) c1 from st interval(10s);
sql create stream streams53 trigger at_once into result5.streamt53 TAGS(dd varchar(100)) SUBTABLE(concat("aaa-", "1") ) as select _wstart, count(*) c1 from st interval(10s);
sql insert into t1 values(1648791213000,1,2,3);
sql insert into t2 values(1648791213000,2,2,3);
$loop_count = 0
loop9:
sleep 300
$loop_count = $loop_count + 1
if $loop_count == 10 then
return -1
endi
print select table_name from information_schema.ins_tables where db_name="result5" order by 1;
sql select table_name from information_schema.ins_tables where db_name="result5" order by 1;
if $rows != 3 then
print =====rows=$rows
print $data00
print $data10
print $data20
print $data40
goto loop9
endi
if $data00 != aaa then
print =====data00=$data00
goto loop9
endi
if $data10 != aaa-1 then
print =====data00=$data00
goto loop9
endi
$loop_count = 0
loop10:
sleep 300
$loop_count = $loop_count + 1
if $loop_count == 10 then
return -1
endi
print sql select tag_name from information_schema.ins_tags where db_name="result5" and stable_name = "streamt52" order by 1;
sql select tag_name from information_schema.ins_tags where db_name="result5" and stable_name = "streamt52" order by 1;
if $rows != 1 then
print =====rows=$rows
print $data00
print $data10
goto loop10
endi
if $data00 != cc then
print =====data00=$data00
goto loop10
endi
print sql select tag_name from information_schema.ins_tags where db_name="result5" and stable_name = "streamt53" order by 1;
sql select tag_name from information_schema.ins_tags where db_name="result5" and stable_name = "streamt53" order by 1;
if $rows != 1 then
print =====rows=$rows
print $data00
print $data10
goto loop10
endi
if $data00 != dd then
print =====data00=$data00
goto loop10
endi
$loop_count = 0
loop11:
sleep 300
$loop_count = $loop_count + 1
if $loop_count == 10 then
return -1
endi
sql select * from result5.streamt51;
if $rows != 1 then
print =====rows=$rows
print $data00 $data10
goto loop11
endi
if $data01 != 2 then
print =====data01=$data01
goto loop11
endi
sql select * from result5.streamt52;
if $rows != 1 then
print =====rows=$rows
print $data00 $data10
goto loop11
endi
if $data01 != 2 then
print =====data01=$data01
goto loop11
endi
sql select * from result5.streamt53;
if $rows != 1 then
print =====rows=$rows
print $data00 $data10
goto loop11
endi
if $data01 != 2 then
print =====data01=$data01
goto loop11
endi
print ======over
print ======over
system sh/stop_dnodes.sh
system sh/stop_dnodes.sh
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录