This commit is contained in:
cpwu 2022-05-26 11:55:41 +08:00
parent 8961f6fa87
commit aba6643ba3
2 changed files with 4 additions and 4 deletions

View File

@ -152,8 +152,8 @@ class TDTestCase:
tdLog.printNoPrefix("==========current sql condition check , must return query ok==========") tdLog.printNoPrefix("==========current sql condition check , must return query ok==========")
for i in range(len(self.__sqls_list)): for i in range(len(self.__sqls_list)):
tdSql.query(self.__sqls_list[i]) tdSql.query(self.__sqls_list[i])
if i % 10 == 0 : # if i % 10 == 0 :
tdLog.success(f"{i} sql is already executed success !") # tdLog.success(f"{i} sql is already executed success !")
def __join_check_old(self, tblist, checkrows, join_flag=True): def __join_check_old(self, tblist, checkrows, join_flag=True):
query_conditions = self.__query_condition(tblist[0]) query_conditions = self.__query_condition(tblist[0])

View File

@ -196,8 +196,8 @@ class TDTestCase:
for i in range(len(sqls)): for i in range(len(sqls)):
tdSql.query(sqls[i]) tdSql.query(sqls[i])
res1_type = self.__get_type(0) res1_type = self.__get_type(0)
if i % 3 == 0: # if i % 5 == 0:
tdLog.success(f"{i} : sql is already executing!") # tdLog.success(f"{i} : sql is already executing!")
for j in range(len(sqls[i:])): for j in range(len(sqls[i:])):
tdSql.query(sqls[j+i]) tdSql.query(sqls[j+i])
order_union_type = False order_union_type = False