This commit is contained in:
cpwu 2022-07-26 15:38:54 +08:00
parent 2cb144664e
commit c71b1440cf
2 changed files with 3 additions and 2 deletions

View File

@ -18,7 +18,7 @@ import time
import socket
import json
import toml
from .boundary import DataBoundary
from util.boundary import DataBoundary
import taos
from util.log import *
from util.sql import *

View File

@ -210,7 +210,8 @@ class TDTestCase:
tdSql.execute(f'create table {dbname}.{ctb_pre}{i+1} using {dbname}.{stb} tags ( {i+1} )')
def __insert_data(self, rows,dbname=DBNAME):
data = DataSet().get_order_set(rows)
data = DataSet()
data.get_order_set(rows)
tdLog.printNoPrefix("==========step: start inser data into tables now.....")
for i in range(self.rows):