File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
rust/cubesqlplanner/cubesqlplanner/src/plan Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -146,9 +146,9 @@ impl ToDateRollingWindowJoinCondition {
146146 let date_column = self . time_dimension . to_sql ( templates, context) ?;
147147
148148 let date_from =
149- templates. column_reference ( & Some ( self . time_series_source . clone ( ) ) , "date_to" ) ?;
150- let date_to =
151149 templates. column_reference ( & Some ( self . time_series_source . clone ( ) ) , "date_from" ) ?;
150+ let date_to =
151+ templates. column_reference ( & Some ( self . time_series_source . clone ( ) ) , "date_to" ) ?;
152152 let date_from = templates. rolling_window_expr_timestamp_cast ( & date_from) ?;
153153 let date_to = templates. rolling_window_expr_timestamp_cast ( & date_to) ?;
154154 let grouped_from = templates. time_grouped_column ( self . granularity . clone ( ) , date_from) ?;
You can’t perform that action at this time.
0 commit comments