From 59cbfcc27e16441165cac15d7d3f14e14d149c01 Mon Sep 17 00:00:00 2001 From: cpwu Date: Sun, 24 Apr 2022 15:18:20 +0800 Subject: [PATCH] fix case --- tests/system-test/2-query/sum.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/system-test/2-query/sum.py b/tests/system-test/2-query/sum.py index b85a91fbc6..d50a840457 100644 --- a/tests/system-test/2-query/sum.py +++ b/tests/system-test/2-query/sum.py @@ -40,7 +40,7 @@ class TDTestCase: ) ) sum_condition.extend( f"{num_col} + {num_col_2}" for num_col_2 in NUM_COL ) - sum_condition.extend( f"{num_col} + {un_num_col} " for un_num_col in UN_NUM_COL ) + sum_condition.extend( f"{num_col} + {un_num_col} " for un_num_col in [BINARY_COL, NCHAR_COL] ) return sum_condition