update test case for now

This commit is contained in:
jiacy-jcy 2022-04-28 09:18:38 +08:00
parent b72c7a744e
commit 9632993e4e
1 changed files with 4 additions and 4 deletions

View File

@ -142,10 +142,10 @@ class TDTestCase:
# tdSql.query("select now()+9223372036854775807 from ntb")
# tdSql.checkRows(3)
tdSql.query("select now()+1.5 from ntb")
tdSql.checkRows(3)
tdSql.query("select now()+1.5 from db.ntb")
tdSql.checkRows(3)
tdSql.error("select now()+1.5 from ntb")
tdSql.error("select now()+1.5 from db.ntb")
tdSql.error("select now()+'abc' from ntb")