This commit is contained in:
cpwu 2022-05-27 13:29:21 +08:00
parent 4add25b1cd
commit 90efaab25c
2 changed files with 2 additions and 2 deletions

View File

@ -43,7 +43,7 @@ class TDTestCase:
for num_col in NUM_COL: for num_col in NUM_COL:
query_condition.extend( query_condition.extend(
( (
f"sin( {tbname}.{num_col} )" f"sin( {tbname}.{num_col} )",
) )
) )
query_condition.extend( f"{tbname}.{num_col} + {tbname}.{num_col_1} " for num_col_1 in NUM_COL ) query_condition.extend( f"{tbname}.{num_col} + {tbname}.{num_col_1} " for num_col_1 in NUM_COL )

View File

@ -43,7 +43,7 @@ class TDTestCase:
for num_col in NUM_COL: for num_col in NUM_COL:
query_condition.extend( query_condition.extend(
( (
f"sin( {tbname}.{num_col} )" f"sin( {tbname}.{num_col} )",
) )
) )
query_condition.extend( f"{tbname}.{num_col} + {tbname}.{num_col_1} " for num_col_1 in NUM_COL ) query_condition.extend( f"{tbname}.{num_col} + {tbname}.{num_col_1} " for num_col_1 in NUM_COL )