From 49a5049eb6ef757a7d2398c7d5a36468a1bc6d19 Mon Sep 17 00:00:00 2001 From: jiacy-jcy Date: Thu, 21 Jul 2022 10:05:33 +0800 Subject: [PATCH] update --- tests/system-test/1-insert/update_data_muti_rows.py | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/tests/system-test/1-insert/update_data_muti_rows.py b/tests/system-test/1-insert/update_data_muti_rows.py index 03eba2c13e..2da2f1f035 100644 --- a/tests/system-test/1-insert/update_data_muti_rows.py +++ b/tests/system-test/1-insert/update_data_muti_rows.py @@ -25,13 +25,12 @@ from util.common import * class TDTestCase: def init(self, conn, logSql): tdLog.debug("start to execute %s" % __file__) - tdSql.init(conn.cursor(),logSql) - + tdSql.init(conn.cursor()) self.dbname = 'db_test' self.ntbname = 'ntb' self.stbname = 'stb' - self.rowNum = 5 - self.tbnum = 2 + self.rowNum = 10 + self.tbnum = 5 self.ts = 1537146000000 self.str_length = 20 self.column_dict = { @@ -87,7 +86,6 @@ class TDTestCase: else: sql += f'({self.ts+i},{values})' sql += ' ' - print(sql) tdSql.execute(sql) def insert_data(self,col_type,tbname,rows,data):