[TD-4376] modify execute to query for select

This commit is contained in:
bryanchang0603 2021-05-28 10:43:15 +08:00
parent f8f091b5c7
commit 6bd6001fe9
1 changed files with 1 additions and 1 deletions

View File

@ -31,7 +31,7 @@ class TDTestCase:
tdLog.info("2 rows inserted")
tdSql.query('select * from m1;')
tdSql.checkRows(2)
tdSql.execute('select *,tbname from m1;')
tdSql.query('select *,tbname from m1;')
tdSql.execute("drop table tm0; ")
tdSql.query('select * from m1')
tdSql.checkRows(1)