From 536a1ed4fae0d406ae7c6502f6c7f139952619ca Mon Sep 17 00:00:00 2001 From: changshuaiqiang Date: Wed, 13 May 2020 18:55:34 +0800 Subject: [PATCH] test: docs --- tests/pytest/table/create.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/pytest/table/create.py b/tests/pytest/table/create.py index ac65f1d9d9..b456b444f4 100644 --- a/tests/pytest/table/create.py +++ b/tests/pytest/table/create.py @@ -27,11 +27,13 @@ class TDTestCase: tdSql.prepare() print("==============step1") + print("prepare data") tdSql.execute("create table db.st (ts timestamp, i int) tags(j int)") tdSql.execute("create table db.tb using st tags(1)") tdSql.execute("insert into db.tb values(now, 1)") print("==============step2") + print("create table as select") try: tdSql.execute("create table db.test as select * from db.st") except Exception as e: