File tree Expand file tree Collapse file tree
src/compute-types/src/plan/interpret
test/sqllogictest/transform Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -139,12 +139,10 @@ impl Interpreter for SingleTimeMonotonic<'_> {
139139 _input_key : & Option < Vec < MirScalarExpr > > ,
140140 input : Self :: Domain ,
141141 _exprs : & Vec < MirScalarExpr > ,
142- _func : & TableFunc ,
142+ func : & TableFunc ,
143143 _mfp : & MapFilterProject ,
144144 ) -> Self :: Domain {
145- // In a single-time context, we just propagate the monotonicity
146- // status of the input
147- input
145+ PhysicallyMonotonic ( input. 0 && func. preserves_monotonicity ( ) )
148146 }
149147
150148 fn join (
Original file line number Diff line number Diff line change @@ -1229,6 +1229,7 @@ Explained Query:
12291229 Reduce::Hierarchical
12301230 aggr_funcs=[max]
12311231 monotonic
1232+ must_consolidate
12321233 key_plan
12331234 project=()
12341235 val_plan=id
You can’t perform that action at this time.
0 commit comments