case: add use db sql

This commit is contained in:
Alex Duan 2023-09-15 17:57:54 +08:00
parent bc1371a4b7
commit 46a9a906e0
1 changed files with 1 additions and 0 deletions

View File

@ -21,6 +21,7 @@ class TDTestCase:
tdSql.checkData(i, 0, 1);
def full_datatype_test(self):
tdSql.execute("use db;")
sql = "create table st(ts timestamp, c1 bool, c2 float, c3 double,c4 tinyint, c5 smallint, c6 int, c7 bigint, c8 tinyint unsigned, c9 smallint unsigned, c10 int unsigned, c11 bigint unsigned) tags( area int);"
tdSql.execute(sql)