diff --git a/tests/system-test/2-query/spread.py b/tests/system-test/2-query/spread.py index 8d867cdea1..71206082d2 100644 --- a/tests/system-test/2-query/spread.py +++ b/tests/system-test/2-query/spread.py @@ -57,7 +57,7 @@ class TDTestCase: f"sqrt( {tbname}.{num_col} )", f"tan( {tbname}.{num_col} )", f"cast( {tbname}.{num_col} as timestamp)", - [ f"{num_col} + {any_col}" for any_col in ALL_COL ] + ( f"{num_col} + {any_col}" for any_col in ALL_COL ]) ) ) for char_col in CHAR_COL: @@ -204,6 +204,7 @@ class TDTestCase: tdSql.error( "select c1 from ct1 union all drop table ct3" ) tdSql.error( "select c1 from ct1 union all '' " ) tdSql.error( " '' union all select c1 from ct1 " ) + tdSql.error( " '' union all select c1 from ct1 " ) # tdSql.error( "select c1 from ct1 union select c1 from ct2 union select c1 from ct4 ") def all_test(self):