From 4de98b45cdd70497780c2b3583c87b06d29b01c9 Mon Sep 17 00:00:00 2001 From: liuyq-617 Date: Mon, 25 Oct 2021 17:09:02 +0800 Subject: [PATCH] [TD-10744]not use 'file' for column name --- tests/pytest/table/create.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/pytest/table/create.py b/tests/pytest/table/create.py index ecd4d01141..54e821246c 100644 --- a/tests/pytest/table/create.py +++ b/tests/pytest/table/create.py @@ -61,6 +61,9 @@ class TDTestCase: tdSql.execute("use db2") tdSql.execute("create table stb(ts timestamp, c int) tags(t int)") tdSql.error("insert into db2.tb6 using db2.stb tags(1) values(now 1) tb2 using db2. tags( )values(now 2)") + + # case for TD-10691 + tdSql.error("create table ttb1(ts timestamp, file int )") def stop(self): tdSql.close() -- GitLab