fix case issue

This commit is contained in:
dapan1121 2021-06-01 08:28:45 +08:00
parent 424cd0123b
commit ce7bfcf024
1 changed files with 1 additions and 1 deletions

View File

@ -45,7 +45,7 @@ class TDTestCase:
tdSql.query("select * from st")
tdSql.checkRows(1)
tdSql.execute("alter table st add column length int")
tdSql.execute("alter table st add column len int")
tdSql.execute("insert into t1 values(now, 1, 2)")
tdSql.query("select last(*) from st")
tdSql.checkData(0, 2, 2);