Merge pull request #17028 from taosdata/fix/TD-19204

test: case for drop topic
This commit is contained in:
Shengliang Guan 2022-09-23 16:25:31 +08:00 committed by GitHub
commit 455c2d927d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 19 additions and 3 deletions

View File

@ -72,15 +72,31 @@ sql create topic topic_ntb_column as select ts, c3 from ntb0
sql create topic topic_ntb_all as select * from ntb0
sql create topic topic_ntb_function as select ts, abs(c1), sin(c2) from ntb0
system sh/exec.sh -n dnode1 -s stop -x SIGINT
system sh/exec.sh -n dnode1 -s start
print == show topics
sql show topics
if $rows != 9 then
return -1
endi
print == drop topic
sql drop topic topic_stb_column
sql show topics
if $rows != 8 then
return -1
endi
system sh/exec.sh -n dnode1 -s stop -x SIGINT
system sh/exec.sh -n dnode1 -s start
print == show topics
sql show topics
if $rows != 8 then
return -1
endi
print == drop topic
sql drop topic topic_ctb_column
sql drop topic topic_ntb_column
@ -90,4 +106,4 @@ if $rows != 6 then
return -1
endi
system sh/exec.sh -n dnode1 -s stop -x SIGINT