From 217df222be90cd5849392b63fb9a75aa1dd5f438 Mon Sep 17 00:00:00 2001 From: afwerar <1296468573@qq.com> Date: Fri, 27 May 2022 20:26:42 +0800 Subject: [PATCH] fix(os): windows timezone error --- tests/system-test/0-others/taosShell.py | 4 ++-- tests/system-test/0-others/taosShellError.py | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/system-test/0-others/taosShell.py b/tests/system-test/0-others/taosShell.py index 079440935b..9c8cd85b46 100644 --- a/tests/system-test/0-others/taosShell.py +++ b/tests/system-test/0-others/taosShell.py @@ -294,8 +294,8 @@ class TDTestCase: sql3 = "echo create table ntbf (ts timestamp, c binary(40)) >> " + sqlFile sql4 = "echo insert into ntbf values (\"2021-04-01 08:00:00.000\", \"test taos -f1\")(\"2021-04-01 08:00:01.000\", \"test taos -f2\") >> " + sqlFile else: - sql3 = "echo create table ntbf \(ts timestamp, c binary\(40\)\) >> " + sqlFile - sql4 = "echo insert into ntbf values \(\"2021-04-01 08:00:00.000\", \"test taos -f1\"\)\(\"2021-04-01 08:00:01.000\", \"test taos -f2\"\) >> " + sqlFile + sql3 = "echo 'create table ntbf (ts timestamp, c binary(40))' >> " + sqlFile + sql4 = "echo 'insert into ntbf values (\"2021-04-01 08:00:00.000\", \"test taos -f1\")(\"2021-04-01 08:00:01.000\", \"test taos -f2\")' >> " + sqlFile sql5 = "echo show databases >> " + sqlFile os.system(sql1) os.system(sql2) diff --git a/tests/system-test/0-others/taosShellError.py b/tests/system-test/0-others/taosShellError.py index 9f1e7d8693..6d247c5700 100644 --- a/tests/system-test/0-others/taosShellError.py +++ b/tests/system-test/0-others/taosShellError.py @@ -222,8 +222,8 @@ class TDTestCase: sql3 = "echo create table ntbf (ts timestamp, c binary(40)) no this item >> " + sqlFile sql4 = "echo insert into ntbf values (\"2021-04-01 08:00:00.000\", \"test taos -f1\")(\"2021-04-01 08:00:01.000\", \"test taos -f2\") >> " + sqlFile else: - sql3 = "echo create table ntbf \(ts timestamp, c binary\(40\)\) no this item >> " + sqlFile - sql4 = "echo insert into ntbf values \(\"2021-04-01 08:00:00.000\", \"test taos -f1\"\)\(\"2021-04-01 08:00:01.000\", \"test taos -f2\"\) >> " + sqlFile + sql3 = "echo 'create table ntbf (ts timestamp, c binary(40)) no this item' >> " + sqlFile + sql4 = "echo 'insert into ntbf values (\"2021-04-01 08:00:00.000\", \"test taos -f1\")(\"2021-04-01 08:00:01.000\", \"test taos -f2\")' >> " + sqlFile sql5 = "echo show databases >> " + sqlFile os.system(sql1) os.system(sql2) -- GitLab