fix case
This commit is contained in:
parent
19ffe0ca81
commit
f3d1ffa295
|
@ -167,7 +167,7 @@ class TDTestCase:
|
||||||
where_claus = self.__where_condition(query_conditon=select_claus)
|
where_claus = self.__where_condition(query_conditon=select_claus)
|
||||||
having_claus = self.__group_condition(col=select_claus, having=f"{select_claus} is not null")
|
having_claus = self.__group_condition(col=select_claus, having=f"{select_claus} is not null")
|
||||||
for arg in self.start_step_val:
|
for arg in self.start_step_val:
|
||||||
if not isinstance(arg,int) or isinstance(arg, bool):
|
if not isinstance(arg,int) or isinstance(arg, bool) or BOOL_COL in select_claus or BINARY_COL in select_claus or NCHAR_COL in select_claus or TS_COL in select_claus:
|
||||||
err_sqls.extend(
|
err_sqls.extend(
|
||||||
(
|
(
|
||||||
self.__single_sql(select_clause=select_claus, from_clause=tb, start_val=arg),
|
self.__single_sql(select_clause=select_claus, from_clause=tb, start_val=arg),
|
||||||
|
|
Loading…
Reference in New Issue