sys_tbname.sim 1.8 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55

system sh/stop_dnodes.sh
system sh/deploy.sh -n dnode1 -i 1
system sh/exec.sh -n dnode1 -s start
sql connect

sql create database sys_tbname;
sql use sys_tbname;
sql create stable st(ts timestamp, f int) tags(t int);
sql create table ct1 using st tags(1);
sql create table ct2 using st tags(2);

sql create table t (ts timestamp, f int);
sql insert into t values(now, 1)(now+1s, 2);


sql create table t2 (ts timestamp, f1 int, f2 int);
sql insert into t2 values(now, 0, 0)(now+1s, 1, 1);

sql select tbname from information_schema.ins_databases;
print $rows $data00
if $rows != 3 then
	return -1
endi
if $data00 != @ins_databases@ then
	return -1
endi
sql select distinct tbname from information_schema.ins_databases;
print $rows $data00
if $rows != 1 then
	return -1
endi
if $data00 != @ins_databases@ then
	return -1
endi

sql select tbname from information_schema.ins_stables;
print $rows $data00
if $rows != 1 then
	return -1
endi
if $data00 != @ins_stables@ then
	return -1
endi
sql select distinct tbname from information_schema.ins_stables;
print $rows $data00
if $rows != 1 then
	return -1
endi
if $data00 != @ins_stables@ then
	return -1
endi

sql select tbname from information_schema.ins_tables;
print $rows $data00
wmmhello's avatar
wmmhello 已提交
56
if $rows != 33 then
57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89
	return -1
endi
if $data00 != @ins_tables@ then
	return -1
endi

sql select distinct tbname from information_schema.ins_tables;
print $rows $data00
if $rows != 1 then
	return -1
endi
if $data00 != @ins_tables@ then
	return -1
endi

sql select tbname from information_schema.ins_tags;
print $rows $data00
if $rows != 2 then
	return -1
endi
if $data00 != @ins_tags@ then
	return -1
endi
sql select distinct tbname from information_schema.ins_tags;
print $rows $data00
if $rows != 1 then
	return -1
endi
if $data00 != @ins_tags@ then
	return -1
endi

#system sh/exec.sh -n dnode1 -s stop -x SIGINT