File tree Expand file tree Collapse file tree 1 file changed +4
-6
lines changed
rust/cubesqlplanner/cubesqlplanner/src/planner/filter Expand file tree Collapse file tree 1 file changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ impl BaseFilter {
5353 vec ! [ ]
5454 } ;
5555
56- //Check if we have proxy time dimension as input
56+ //Check if we have proxy time dimension as input
5757 let symbol_to_check = if let Ok ( time_dimension) = member_evaluator. as_time_dimension ( ) {
5858 time_dimension. base_symbol ( ) . clone ( )
5959 } else {
@@ -66,10 +66,6 @@ impl BaseFilter {
6666 } else {
6767 false
6868 } ;
69-
70-
71-
72-
7369
7470 Ok ( Rc :: new ( Self {
7571 query_tools,
@@ -154,7 +150,9 @@ impl BaseFilter {
154150 plan_templates,
155151 ) ?;
156152 let member_sql = if self . is_over_date_range {
157- plan_templates. base_tools ( ) . time_stamp_cast ( member_sql. clone ( ) ) ?
153+ plan_templates
154+ . base_tools ( )
155+ . time_stamp_cast ( member_sql. clone ( ) ) ?
158156 } else {
159157 member_sql
160158 } ;
You can’t perform that action at this time.
0 commit comments