From e2031c3991fd213ec60fbd306dcc0ba36fd4b511 Mon Sep 17 00:00:00 2001 From: Alex Duan <417921451@qq.com> Date: Mon, 3 Feb 2025 23:58:00 +0800 Subject: [PATCH] TypeBool.py modify --- tests/army/tools/taosdump/ws/taosdumpTestTypeBool.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/army/tools/taosdump/ws/taosdumpTestTypeBool.py b/tests/army/tools/taosdump/ws/taosdumpTestTypeBool.py index 80ea70dd61..207952cd73 100644 --- a/tests/army/tools/taosdump/ws/taosdumpTestTypeBool.py +++ b/tests/army/tools/taosdump/ws/taosdumpTestTypeBool.py @@ -34,7 +34,7 @@ class TDTestCase(TBase): tdSql.execute("create database db keep 3649 ") tdSql.execute("use db") - tdSql.execute("create table st(ts timestamp, c1 BOOL) tags(btag BOOL)") + tdSql.execute("create table db.st(ts timestamp, c1 BOOL) tags(btag BOOL)") tdSql.execute("create table db.t1 using db.st tags(true)") tdSql.execute("insert into db.t1 values(1640000000000, true)") tdSql.execute("create table db.t2 using db.st tags(false)")