test: add alter comment test case
This commit is contained in:
parent
61dc88118d
commit
c0bcf98c7d
|
@ -79,6 +79,7 @@
|
||||||
./test.sh -f tsim/tmq/basic2Of2ConsOverlap.sim
|
./test.sh -f tsim/tmq/basic2Of2ConsOverlap.sim
|
||||||
|
|
||||||
# --- stable
|
# --- stable
|
||||||
|
./test.sh -f tsim/stable/alter1.sim
|
||||||
./test.sh -f tsim/stable/disk.sim
|
./test.sh -f tsim/stable/disk.sim
|
||||||
./test.sh -f tsim/stable/dnode3.sim
|
./test.sh -f tsim/stable/dnode3.sim
|
||||||
./test.sh -f tsim/stable/metrics.sim
|
./test.sh -f tsim/stable/metrics.sim
|
||||||
|
|
|
@ -6,7 +6,7 @@ sql connect
|
||||||
print ========== create stable
|
print ========== create stable
|
||||||
sql create database db
|
sql create database db
|
||||||
sql use db
|
sql use db
|
||||||
sql create table db.stb (ts timestamp, c1 int, c2 binary(4)) tags(t1 int, t2 float, t3 binary(16))
|
sql create table db.stb (ts timestamp, c1 int, c2 binary(4)) tags(t1 int, t2 float, t3 binary(16)) comment "abd"
|
||||||
|
|
||||||
sql show db.stables
|
sql show db.stables
|
||||||
if $rows != 1 then
|
if $rows != 1 then
|
||||||
|
@ -18,6 +18,9 @@ endi
|
||||||
if $data[0][4] != 3 then
|
if $data[0][4] != 3 then
|
||||||
return -1
|
return -1
|
||||||
endi
|
endi
|
||||||
|
if $data[0][6] != abd then
|
||||||
|
return -1
|
||||||
|
endi
|
||||||
|
|
||||||
print ========== add column
|
print ========== add column
|
||||||
sql_error alter table db.stb add column ts int
|
sql_error alter table db.stb add column ts int
|
||||||
|
@ -154,4 +157,12 @@ sql_error alter table db.stb rename tag ts tx
|
||||||
sql_error alter table db.stb rename tag c2 cx
|
sql_error alter table db.stb rename tag c2 cx
|
||||||
sql alter table db.stb rename tag t1 tx
|
sql alter table db.stb rename tag t1 tx
|
||||||
|
|
||||||
|
print ========== alter common
|
||||||
|
sql alter table db.stb comment 'abcde' ;
|
||||||
|
|
||||||
|
sql show db.stables;
|
||||||
|
if $data[0][6] != abcde then
|
||||||
|
return -1
|
||||||
|
endi
|
||||||
|
|
||||||
system sh/exec.sh -n dnode1 -s stop -x SIGINT
|
system sh/exec.sh -n dnode1 -s stop -x SIGINT
|
||||||
|
|
Loading…
Reference in New Issue