diff --git a/tests/script/jenkins/basic.txt b/tests/script/jenkins/basic.txt index b2c3ae7212..af38681865 100644 --- a/tests/script/jenkins/basic.txt +++ b/tests/script/jenkins/basic.txt @@ -79,6 +79,7 @@ ./test.sh -f tsim/tmq/basic2Of2ConsOverlap.sim # --- stable +./test.sh -f tsim/stable/alter1.sim ./test.sh -f tsim/stable/disk.sim ./test.sh -f tsim/stable/dnode3.sim ./test.sh -f tsim/stable/metrics.sim diff --git a/tests/script/tsim/stable/alter1.sim b/tests/script/tsim/stable/alter1.sim index 822deca2ca..5cee10756c 100644 --- a/tests/script/tsim/stable/alter1.sim +++ b/tests/script/tsim/stable/alter1.sim @@ -6,7 +6,7 @@ sql connect print ========== create stable sql create database 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 if $rows != 1 then @@ -18,6 +18,9 @@ endi if $data[0][4] != 3 then return -1 endi +if $data[0][6] != abd then + return -1 +endi print ========== add column 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 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