This commit is contained in:
cpwu 2022-05-09 12:14:02 +08:00
parent 04992db19b
commit 94b59e6984
3 changed files with 3 additions and 2 deletions

View File

@ -82,7 +82,7 @@ class TDTestCase:
if num > 8 or num < 2 :
[tdSql.error(f"select concat( {','.join( condition ) }) from {tbname} {where_condition} {group} ") for group in groups ]
return
break
tdSql.query(f"select {','.join(condition)} from {tbname} ")
rows = tdSql.queryRows

View File

@ -82,7 +82,7 @@ class TDTestCase:
if num > 8 or num < 2 :
[tdSql.error(f"select concat_ws('_', {','.join( condition ) }) from {tbname} {where_condition} {group} ") for group in groups ]
return
break
tdSql.query(f"select {','.join(condition)} from {tbname} ")
rows = tdSql.queryRows

View File

@ -99,6 +99,7 @@ class TDTestCase:
if not join_flag :
tdSql.error(sql=sql)
break
if len(tblist) == 2:
if "ct1" in tblist or "t1" in tblist:
self.__join_current(sql, checkrows)