提交 b22ce4c9 编写于 作者: J jiacy-jcy

update

上级 1a621182
......@@ -122,6 +122,17 @@ class TDTestCase:
tdSql.checkRows(0)
tdSql.query("select now() from ntb where ts=today()")
tdSql.checkRows(1)
tdSql.query("select now()+1 from ntb")
tdSql.checkRows(3)
tdSql.query("select now()+9223372036854775807 from ntb")
tdSql.checkRows(3)
tdSql.query("select now()+1.5 from ntb")
tdSql.checkRows(3)
tdSql.error("select now()+'abc' from ntb")
tdSql.error("select now()+abc from ntb")
# stable
tdSql.query("select now() from stb")
......
......@@ -73,6 +73,7 @@ class TDTestCase:
tdSql.checkRows(2)
tdSql.query("select timezone()+1 from ntb")
tdSql.checkRows(2)
tdSql.query("select timezone()+1.5 from ntb")
def stop(self):
tdSql.close()
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册