fix case
This commit is contained in:
parent
c33d785b6e
commit
fe491e3e9e
|
@ -62,10 +62,10 @@ class TDTestCase:
|
||||||
for char_col in CHAR_COL:
|
for char_col in CHAR_COL:
|
||||||
query_condition.extend(
|
query_condition.extend(
|
||||||
(
|
(
|
||||||
f"sum(cast({tbname}.{char_col}) as bigint)",
|
f"sum(cast({tbname}.{char_col} as bigint ))",
|
||||||
f"max(cast({tbname}.{char_col}) as bigint)",
|
f"max(cast({tbname}.{char_col} as bigint ))",
|
||||||
f"min(cast({tbname}.{char_col}) as bigint)",
|
f"min(cast({tbname}.{char_col} as bigint ))",
|
||||||
f"avg(cast({tbname}.{char_col}) as bigint)",
|
f"avg(cast({tbname}.{char_col} as bigint ))",
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
query_condition.extend(
|
query_condition.extend(
|
||||||
|
|
Loading…
Reference in New Issue