Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
90cb67d0
T
TDengine
项目概览
taosdata
/
TDengine
大约 2 年 前同步成功
通知
1192
Star
22018
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看板
提交
90cb67d0
编写于
8月 14, 2023
作者:
D
dapan1121
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix: table count issue
上级
8987553d
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
13 addition
and
13 deletion
+13
-13
tests/develop-test/2-query/table_count_scan.py
tests/develop-test/2-query/table_count_scan.py
+8
-8
tests/script/tsim/query/sys_tbname.sim
tests/script/tsim/query/sys_tbname.sim
+1
-1
tests/script/tsim/query/tableCount.sim
tests/script/tsim/query/tableCount.sim
+3
-3
tests/system-test/0-others/information_schema.py
tests/system-test/0-others/information_schema.py
+1
-1
未找到文件。
tests/develop-test/2-query/table_count_scan.py
浏览文件 @
90cb67d0
...
@@ -65,7 +65,7 @@ class TDTestCase:
...
@@ -65,7 +65,7 @@ class TDTestCase:
tdSql
.
query
(
'select count(*),db_name, stable_name from information_schema.ins_tables group by db_name, stable_name;'
)
tdSql
.
query
(
'select count(*),db_name, stable_name from information_schema.ins_tables group by db_name, stable_name;'
)
tdSql
.
checkRows
(
3
)
tdSql
.
checkRows
(
3
)
tdSql
.
checkData
(
0
,
0
,
2
4
)
tdSql
.
checkData
(
0
,
0
,
2
3
)
tdSql
.
checkData
(
0
,
1
,
'information_schema'
)
tdSql
.
checkData
(
0
,
1
,
'information_schema'
)
tdSql
.
checkData
(
0
,
2
,
None
)
tdSql
.
checkData
(
0
,
2
,
None
)
tdSql
.
checkData
(
1
,
0
,
3
)
tdSql
.
checkData
(
1
,
0
,
3
)
...
@@ -77,7 +77,7 @@ class TDTestCase:
...
@@ -77,7 +77,7 @@ class TDTestCase:
tdSql
.
query
(
'select count(1) v,db_name, stable_name from information_schema.ins_tables group by db_name, stable_name order by v desc;'
)
tdSql
.
query
(
'select count(1) v,db_name, stable_name from information_schema.ins_tables group by db_name, stable_name order by v desc;'
)
tdSql
.
checkRows
(
3
)
tdSql
.
checkRows
(
3
)
tdSql
.
checkData
(
0
,
0
,
2
4
)
tdSql
.
checkData
(
0
,
0
,
2
3
)
tdSql
.
checkData
(
0
,
1
,
'information_schema'
)
tdSql
.
checkData
(
0
,
1
,
'information_schema'
)
tdSql
.
checkData
(
0
,
2
,
None
)
tdSql
.
checkData
(
0
,
2
,
None
)
tdSql
.
checkData
(
1
,
0
,
5
)
tdSql
.
checkData
(
1
,
0
,
5
)
...
@@ -93,7 +93,7 @@ class TDTestCase:
...
@@ -93,7 +93,7 @@ class TDTestCase:
tdSql
.
checkData
(
1
,
1
,
'performance_schema'
)
tdSql
.
checkData
(
1
,
1
,
'performance_schema'
)
tdSql
.
checkData
(
0
,
0
,
3
)
tdSql
.
checkData
(
0
,
0
,
3
)
tdSql
.
checkData
(
0
,
1
,
'tbl_count'
)
tdSql
.
checkData
(
0
,
1
,
'tbl_count'
)
tdSql
.
checkData
(
2
,
0
,
2
4
)
tdSql
.
checkData
(
2
,
0
,
2
3
)
tdSql
.
checkData
(
2
,
1
,
'information_schema'
)
tdSql
.
checkData
(
2
,
1
,
'information_schema'
)
tdSql
.
query
(
"select count(*) from information_schema.ins_tables where db_name='tbl_count'"
)
tdSql
.
query
(
"select count(*) from information_schema.ins_tables where db_name='tbl_count'"
)
...
@@ -106,7 +106,7 @@ class TDTestCase:
...
@@ -106,7 +106,7 @@ class TDTestCase:
tdSql
.
query
(
'select count(*) from information_schema.ins_tables'
)
tdSql
.
query
(
'select count(*) from information_schema.ins_tables'
)
tdSql
.
checkRows
(
1
)
tdSql
.
checkRows
(
1
)
tdSql
.
checkData
(
0
,
0
,
3
2
)
tdSql
.
checkData
(
0
,
0
,
3
1
)
tdSql
.
execute
(
'create table stba (ts timestamp, c1 bool, c2 tinyint, c3 smallint, c4 int, c5 bigint, c6 float, c7 double, c8 binary(10), c9 nchar(10), c10 tinyint unsigned, c11 smallint unsigned, c12 int unsigned, c13 bigint unsigned) TAGS(t1 int, t2 binary(10), t3 double);'
)
tdSql
.
execute
(
'create table stba (ts timestamp, c1 bool, c2 tinyint, c3 smallint, c4 int, c5 bigint, c6 float, c7 double, c8 binary(10), c9 nchar(10), c10 tinyint unsigned, c11 smallint unsigned, c12 int unsigned, c13 bigint unsigned) TAGS(t1 int, t2 binary(10), t3 double);'
)
...
@@ -189,7 +189,7 @@ class TDTestCase:
...
@@ -189,7 +189,7 @@ class TDTestCase:
tdSql
.
checkData
(
2
,
0
,
5
)
tdSql
.
checkData
(
2
,
0
,
5
)
tdSql
.
checkData
(
2
,
1
,
'performance_schema'
)
tdSql
.
checkData
(
2
,
1
,
'performance_schema'
)
tdSql
.
checkData
(
2
,
2
,
None
)
tdSql
.
checkData
(
2
,
2
,
None
)
tdSql
.
checkData
(
3
,
0
,
2
4
)
tdSql
.
checkData
(
3
,
0
,
2
3
)
tdSql
.
checkData
(
3
,
1
,
'information_schema'
)
tdSql
.
checkData
(
3
,
1
,
'information_schema'
)
tdSql
.
checkData
(
3
,
2
,
None
)
tdSql
.
checkData
(
3
,
2
,
None
)
...
@@ -204,7 +204,7 @@ class TDTestCase:
...
@@ -204,7 +204,7 @@ class TDTestCase:
tdSql
.
checkData
(
2
,
0
,
5
)
tdSql
.
checkData
(
2
,
0
,
5
)
tdSql
.
checkData
(
2
,
1
,
'performance_schema'
)
tdSql
.
checkData
(
2
,
1
,
'performance_schema'
)
tdSql
.
checkData
(
2
,
2
,
None
)
tdSql
.
checkData
(
2
,
2
,
None
)
tdSql
.
checkData
(
3
,
0
,
2
4
)
tdSql
.
checkData
(
3
,
0
,
2
3
)
tdSql
.
checkData
(
3
,
1
,
'information_schema'
)
tdSql
.
checkData
(
3
,
1
,
'information_schema'
)
tdSql
.
checkData
(
3
,
2
,
None
)
tdSql
.
checkData
(
3
,
2
,
None
)
...
@@ -215,7 +215,7 @@ class TDTestCase:
...
@@ -215,7 +215,7 @@ class TDTestCase:
tdSql
.
checkData
(
0
,
1
,
'tbl_count'
)
tdSql
.
checkData
(
0
,
1
,
'tbl_count'
)
tdSql
.
checkData
(
1
,
0
,
5
)
tdSql
.
checkData
(
1
,
0
,
5
)
tdSql
.
checkData
(
1
,
1
,
'performance_schema'
)
tdSql
.
checkData
(
1
,
1
,
'performance_schema'
)
tdSql
.
checkData
(
2
,
0
,
2
4
)
tdSql
.
checkData
(
2
,
0
,
2
3
)
tdSql
.
checkData
(
2
,
1
,
'information_schema'
)
tdSql
.
checkData
(
2
,
1
,
'information_schema'
)
tdSql
.
query
(
"select count(*) from information_schema.ins_tables where db_name='tbl_count'"
)
tdSql
.
query
(
"select count(*) from information_schema.ins_tables where db_name='tbl_count'"
)
...
@@ -228,7 +228,7 @@ class TDTestCase:
...
@@ -228,7 +228,7 @@ class TDTestCase:
tdSql
.
query
(
'select count(*) from information_schema.ins_tables'
)
tdSql
.
query
(
'select count(*) from information_schema.ins_tables'
)
tdSql
.
checkRows
(
1
)
tdSql
.
checkRows
(
1
)
tdSql
.
checkData
(
0
,
0
,
3
3
)
tdSql
.
checkData
(
0
,
0
,
3
2
)
tdSql
.
execute
(
'drop database tbl_count'
)
tdSql
.
execute
(
'drop database tbl_count'
)
...
...
tests/script/tsim/query/sys_tbname.sim
浏览文件 @
90cb67d0
...
@@ -58,7 +58,7 @@ endi
...
@@ -58,7 +58,7 @@ endi
sql select tbname from information_schema.ins_tables;
sql select tbname from information_schema.ins_tables;
print $rows $data00
print $rows $data00
if $rows != 3
3
then
if $rows != 3
2
then
return -1
return -1
endi
endi
if $data00 != @ins_tables@ then
if $data00 != @ins_tables@ then
...
...
tests/script/tsim/query/tableCount.sim
浏览文件 @
90cb67d0
...
@@ -53,7 +53,7 @@ sql select stable_name,count(table_name) from information_schema.ins_tables grou
...
@@ -53,7 +53,7 @@ sql select stable_name,count(table_name) from information_schema.ins_tables grou
if $rows != 3 then
if $rows != 3 then
return -1
return -1
endi
endi
if $data01 !=
30
then
if $data01 !=
29
then
return -1
return -1
endi
endi
if $data11 != 10 then
if $data11 != 10 then
...
@@ -72,7 +72,7 @@ endi
...
@@ -72,7 +72,7 @@ endi
if $data11 != 5 then
if $data11 != 5 then
return -1
return -1
endi
endi
if $data21 != 2
4
then
if $data21 != 2
3
then
return -1
return -1
endi
endi
if $data31 != 5 then
if $data31 != 5 then
...
@@ -97,7 +97,7 @@ endi
...
@@ -97,7 +97,7 @@ endi
if $data42 != 3 then
if $data42 != 3 then
return -1
return -1
endi
endi
if $data52 != 2
4
then
if $data52 != 2
3
then
return -1
return -1
endi
endi
if $data62 != 5 then
if $data62 != 5 then
...
...
tests/system-test/0-others/information_schema.py
浏览文件 @
90cb67d0
...
@@ -55,7 +55,7 @@ class TDTestCase:
...
@@ -55,7 +55,7 @@ class TDTestCase:
]
]
self
.
binary_str
=
'taosdata'
self
.
binary_str
=
'taosdata'
self
.
nchar_str
=
'涛思数据'
self
.
nchar_str
=
'涛思数据'
self
.
ins_list
=
[
'ins_dnodes'
,
'ins_mnodes'
,
'ins_
modules'
,
'ins_
qnodes'
,
'ins_snodes'
,
'ins_cluster'
,
'ins_databases'
,
'ins_functions'
,
\
self
.
ins_list
=
[
'ins_dnodes'
,
'ins_mnodes'
,
'ins_qnodes'
,
'ins_snodes'
,
'ins_cluster'
,
'ins_databases'
,
'ins_functions'
,
\
'ins_indexes'
,
'ins_stables'
,
'ins_tables'
,
'ins_tags'
,
'ins_columns'
,
'ins_users'
,
'ins_grants'
,
'ins_vgroups'
,
'ins_configs'
,
'ins_dnode_variables'
,
\
'ins_indexes'
,
'ins_stables'
,
'ins_tables'
,
'ins_tags'
,
'ins_columns'
,
'ins_users'
,
'ins_grants'
,
'ins_vgroups'
,
'ins_configs'
,
'ins_dnode_variables'
,
\
'ins_topics'
,
'ins_subscriptions'
,
'ins_streams'
,
'ins_stream_tasks'
,
'ins_vnodes'
,
'ins_user_privileges'
]
'ins_topics'
,
'ins_subscriptions'
,
'ins_streams'
,
'ins_stream_tasks'
,
'ins_vnodes'
,
'ins_user_privileges'
]
self
.
perf_list
=
[
'perf_connections'
,
'perf_queries'
,
'perf_consumers'
,
'perf_trans'
,
'perf_apps'
]
self
.
perf_list
=
[
'perf_connections'
,
'perf_queries'
,
'perf_consumers'
,
'perf_trans'
,
'perf_apps'
]
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录