Skip to main content

mz_transform/
analysis.rs

1// Copyright Materialize, Inc. and contributors. All rights reserved.
2//
3// Use of this software is governed by the Business Source License
4// included in the LICENSE file.
5//
6// As of the Change Date specified in that file, in accordance with
7// the Business Source License, use of this software will be governed
8// by the Apache License, Version 2.0.
9
10//! Traits and types for reusable expression analysis
11
12pub mod equivalences;
13pub mod monotonic;
14
15use mz_expr::MirRelationExpr;
16
17pub use arity::Arity;
18pub use cardinality::Cardinality;
19pub use column_names::{ColumnName, ColumnNames};
20pub use common::{Derived, DerivedBuilder, DerivedView};
21pub use explain::annotate_plan;
22pub use non_negative::NonNegative;
23pub use repr_types::ReprRelationType;
24pub use subtree::SubtreeSize;
25pub use unique_keys::UniqueKeys;
26
27/// An analysis that can be applied bottom-up to a `MirRelationExpr`.
28pub trait Analysis: 'static {
29    /// The type of value this analysis associates with an expression.
30    type Value: std::fmt::Debug;
31    /// Announce any dependencies this analysis has on other analyses.
32    ///
33    /// The method should invoke `builder.require::<Foo>()` for each other
34    /// analysis `Foo` this analysis depends upon.
35    fn announce_dependencies(_builder: &mut DerivedBuilder) {}
36    /// The analysis value derived for an expression, given other analysis results.
37    ///
38    /// The other analysis results include the results of this analysis for all children,
39    /// in `results`, and the results of other analyses this analysis has expressed a
40    /// dependence upon, in `depends`, for children and the expression itself.
41    /// The analysis results for `Self` can only be found in `results`, and are not
42    /// available in `depends`.
43    ///
44    /// Implementors of this method must defensively check references into `results`, as
45    /// it may be invoked on `LetRec` bindings that have not yet been populated. It is up
46    /// to the analysis what to do in that case, but conservative behavior is recommended.
47    ///
48    /// The `index` indicates the post-order index for the expression, for use in finding
49    /// the corresponding information in `results` and `depends`.
50    ///
51    /// The returned result will be associated with this expression for this analysis,
52    /// and the analyses will continue.
53    fn derive(
54        &self,
55        expr: &MirRelationExpr,
56        index: usize,
57        results: &[Self::Value],
58        depends: &Derived,
59    ) -> Self::Value;
60
61    /// When available, provide a lattice interface to allow optimistic recursion.
62    ///
63    /// Providing a non-`None` output indicates that the analysis intends re-iteration.
64    fn lattice() -> Option<Box<dyn Lattice<Self::Value>>> {
65        None
66    }
67}
68
69/// Lattice methods for repeated analysis
70pub trait Lattice<T> {
71    /// An element greater than all other elements.
72    fn top(&self) -> T;
73    /// Set `a` to the greatest lower bound of `a` and `b`, and indicate if `a` changed as a result.
74    fn meet_assign(&self, a: &mut T, b: T) -> bool;
75}
76
77/// Types common across multiple analyses
78pub mod common {
79
80    use std::any::{Any, TypeId};
81    use std::collections::BTreeMap;
82
83    use itertools::Itertools;
84    use mz_expr::LocalId;
85    use mz_expr::MirRelationExpr;
86    use mz_ore::assert_none;
87    use mz_repr::optimize::OptimizerFeatures;
88
89    use super::Analysis;
90    use super::subtree::SubtreeSize;
91
92    /// Container for analysis state and binding context.
93    #[derive(Default)]
94    #[allow(missing_debug_implementations)]
95    pub struct Derived {
96        /// A record of active analyses and their results, indexed by their type id.
97        analyses: BTreeMap<TypeId, Box<dyn AnalysisBundle>>,
98        /// Analyses ordered where each depends only on strictly prior analyses.
99        order: Vec<TypeId>,
100        /// Map from local identifier to result offset for analysis values.
101        bindings: BTreeMap<LocalId, usize>,
102    }
103
104    impl Derived {
105        /// Return the analysis results derived so far.
106        ///
107        /// # Panics
108        ///
109        /// This method panics if `A` was not installed as a required analysis.
110        pub fn results<A: Analysis>(&self) -> &[A::Value] {
111            let type_id = TypeId::of::<Bundle<A>>();
112            if let Some(bundle) = self.analyses.get(&type_id) {
113                if let Some(bundle) = bundle.as_any().downcast_ref::<Bundle<A>>() {
114                    return &bundle.results[..];
115                }
116            }
117            panic!("Analysis {:?} missing", std::any::type_name::<A>());
118        }
119        /// Bindings from local identifiers to result offsets for analysis values.
120        pub fn bindings(&self) -> &BTreeMap<LocalId, usize> {
121            &self.bindings
122        }
123        /// Result offsets for the state of a various number of children of the current expression.
124        ///
125        /// The integers are the zero-offset locations in the `SubtreeSize` analysis. The order of
126        /// the children is descending, from last child to first, because of how the information is
127        /// laid out, and the non-reversibility of the look-ups.
128        ///
129        /// It is an error to call this method with more children than expression has.
130        pub fn children_of_rev<'a>(
131            &'a self,
132            start: usize,
133            count: usize,
134        ) -> impl Iterator<Item = usize> + 'a {
135            let sizes = self.results::<SubtreeSize>();
136            let offset = 1;
137            (0..count).scan(offset, move |offset, _| {
138                let result = start - *offset;
139                *offset += sizes[result];
140                Some(result)
141            })
142        }
143
144        /// Recast the derived data as a view that can be subdivided into views over child state.
145        pub fn as_view<'a>(&'a self) -> DerivedView<'a> {
146            DerivedView {
147                derived: self,
148                lower: 0,
149                upper: self.results::<SubtreeSize>().len(),
150            }
151        }
152    }
153
154    /// The subset of a `Derived` corresponding to an expression and its children.
155    ///
156    /// Specifically, bounds an interval `[lower, upper)` that ends with the state
157    /// of an expression, at `upper-1`, and is preceded by the state of descendents.
158    ///
159    /// This is best thought of as a node in a tree rather
160    #[allow(missing_debug_implementations)]
161    #[derive(Copy, Clone)]
162    pub struct DerivedView<'a> {
163        derived: &'a Derived,
164        lower: usize,
165        upper: usize,
166    }
167
168    impl<'a> DerivedView<'a> {
169        /// The value associated with the expression.
170        pub fn value<A: Analysis>(&self) -> Option<&'a A::Value> {
171            self.results::<A>().last()
172        }
173
174        /// The post-order traversal index for the expression.
175        ///
176        /// This can be used to index into the full set of results, as provided by an
177        /// instance of `Derived`.
178        pub fn index(&self) -> usize {
179            self.upper - 1
180        }
181
182        /// The value bound to an identifier, if it has been derived.
183        ///
184        /// There are several reasons the value could not be derived, and this method
185        /// does not distinguish between them.
186        pub fn bound<A: Analysis>(&self, id: LocalId) -> Option<&'a A::Value> {
187            self.derived
188                .bindings
189                .get(&id)
190                .and_then(|index| self.derived.results::<A>().get(*index))
191        }
192
193        /// The results for expression and its children.
194        ///
195        /// The results for the expression itself will be the last element.
196        ///
197        /// # Panics
198        ///
199        /// This method panics if `A` was not installed as a required analysis.
200        pub fn results<A: Analysis>(&self) -> &'a [A::Value] {
201            &self.derived.results::<A>()[self.lower..self.upper]
202        }
203
204        /// Bindings from local identifiers to result offsets for analysis values.
205        ///
206        /// This method returns all bindings, which may include bindings not in scope for
207        /// the expression and its children; they should be ignored.
208        pub fn bindings(&self) -> &'a BTreeMap<LocalId, usize> {
209            self.derived.bindings()
210        }
211
212        /// Subviews over `self` corresponding to the children of the expression, in reverse order.
213        ///
214        /// These views should disjointly cover the same interval as `self`, except for the last element
215        /// which corresponds to the expression itself.
216        ///
217        /// The number of produced items should exactly match the number of children, which need not
218        /// be provided as an argument. This relies on the well-formedness of the view, which should
219        /// exhaust itself just as it enumerates its last (the first) child view.
220        pub fn children_rev(&self) -> impl Iterator<Item = DerivedView<'a>> + 'a {
221            // This logic is copy/paste from `Derived::children_of_rev` but it was annoying to layer
222            // it over the output of that function, and perhaps clearer to rewrite in any case.
223
224            // Discard the last element (the size of the expression's subtree).
225            // Repeatedly read out the last element, then peel off that many elements.
226            // Each extracted slice corresponds to a child of the current expression.
227            // We should end cleanly with an empty slice, otherwise there is an issue.
228            let sizes = self.results::<SubtreeSize>();
229            let sizes = &sizes[..sizes.len() - 1];
230
231            let offset = self.lower;
232            let derived = self.derived;
233            (0..).scan(sizes, move |sizes, _| {
234                if let Some(size) = sizes.last() {
235                    *sizes = &sizes[..sizes.len() - size];
236                    Some(Self {
237                        derived,
238                        lower: offset + sizes.len(),
239                        upper: offset + sizes.len() + size,
240                    })
241                } else {
242                    None
243                }
244            })
245        }
246
247        /// A convenience method for the view over the expressions last child.
248        ///
249        /// This method is appropriate to call on expressions with multiple children,
250        /// and in particular for `Let` and `LetRecv` variants where the body is the
251        /// last child.
252        ///
253        /// It is an error to call this on a view for an expression with no children.
254        pub fn last_child(&self) -> DerivedView<'a> {
255            self.children_rev().next().unwrap()
256        }
257    }
258
259    /// A builder wrapper to accumulate announced dependencies and construct default state.
260    #[allow(missing_debug_implementations)]
261    pub struct DerivedBuilder<'a> {
262        result: Derived,
263        features: &'a OptimizerFeatures,
264    }
265
266    impl<'a> DerivedBuilder<'a> {
267        /// Create a new [`DerivedBuilder`] parameterized by [`OptimizerFeatures`].
268        pub fn new(features: &'a OptimizerFeatures) -> Self {
269            // The default builder should include `SubtreeSize` to facilitate navigation.
270            let mut builder = DerivedBuilder {
271                result: Derived::default(),
272                features,
273            };
274            builder.require(SubtreeSize);
275            builder
276        }
277    }
278
279    impl<'a> DerivedBuilder<'a> {
280        /// Announces a dependence on an analysis `A`.
281        ///
282        /// This ensures that `A` will be performed, and before any analysis that
283        /// invokes this method.
284        pub fn require<A: Analysis>(&mut self, analysis: A) {
285            // The method recursively descends through required analyses, first
286            // installing each in `result.analyses` and second in `result.order`.
287            // The first is an obligation, and serves as an indication that we have
288            // found a cycle in dependencies.
289            let type_id = TypeId::of::<Bundle<A>>();
290            if !self.result.order.contains(&type_id) {
291                // If we have not sequenced `type_id` but have a bundle, it means
292                // we are in the process of fulfilling its requirements: a cycle.
293                if self.result.analyses.contains_key(&type_id) {
294                    panic!("Cyclic dependency detected: {}", std::any::type_name::<A>());
295                }
296                // Insert the analysis bundle first, so that we can detect cycles.
297                self.result.analyses.insert(
298                    type_id,
299                    Box::new(Bundle::<A> {
300                        analysis,
301                        results: Vec::new(),
302                        fuel: 100,
303                        allow_optimistic: self.features.enable_letrec_fixpoint_analysis,
304                    }),
305                );
306                A::announce_dependencies(self);
307                // All dependencies are successfully sequenced; sequence `type_id`.
308                self.result.order.push(type_id);
309            }
310        }
311        /// Complete the building: perform analyses and return the resulting `Derivation`.
312        pub fn visit(mut self, expr: &MirRelationExpr) -> Derived {
313            // A stack of expressions to process (`Ok`) and let bindings to fill (`Err`).
314            let mut todo = vec![Ok(expr)];
315            // Expressions in reverse post-order: each expression, followed by its children in reverse order.
316            // We will reverse this to get the post order, but must form it in reverse.
317            let mut rev_post_order = Vec::new();
318            while let Some(command) = todo.pop() {
319                match command {
320                    // An expression to visit.
321                    Ok(expr) => {
322                        match expr {
323                            MirRelationExpr::Let { id, value, body } => {
324                                todo.push(Ok(value));
325                                todo.push(Err(*id));
326                                todo.push(Ok(body));
327                            }
328                            MirRelationExpr::LetRec {
329                                ids, values, body, ..
330                            } => {
331                                for (id, value) in ids.iter().zip_eq(values) {
332                                    todo.push(Ok(value));
333                                    todo.push(Err(*id));
334                                }
335                                todo.push(Ok(body));
336                            }
337                            _ => {
338                                todo.extend(expr.children().map(Ok));
339                            }
340                        }
341                        rev_post_order.push(expr);
342                    }
343                    // A local id to install
344                    Err(local_id) => {
345                        // Capture the *remaining* work, which we'll need to flip around.
346                        let prior = self.result.bindings.insert(local_id, rev_post_order.len());
347                        assert_none!(prior, "Shadowing not allowed");
348                    }
349                }
350            }
351            // Flip the offsets now that we know a length.
352            for value in self.result.bindings.values_mut() {
353                *value = rev_post_order.len() - *value - 1;
354            }
355            // Visit the pre-order in reverse order: post-order.
356            rev_post_order.reverse();
357
358            // Apply each analysis to `expr` in order.
359            for id in self.result.order.iter() {
360                if let Some(mut bundle) = self.result.analyses.remove(id) {
361                    bundle.analyse(&rev_post_order[..], &self.result);
362                    self.result.analyses.insert(*id, bundle);
363                }
364            }
365
366            self.result
367        }
368    }
369
370    /// An abstraction for an analysis and associated state.
371    trait AnalysisBundle: Any {
372        /// Populates internal state for all of `exprs`.
373        ///
374        /// Result indicates whether new information was produced for `exprs.last()`.
375        fn analyse(&mut self, exprs: &[&MirRelationExpr], depends: &Derived) -> bool;
376        /// Upcasts `self` to a `&dyn Any`.
377        ///
378        /// NOTE: This is required until <https://github.com/rust-lang/rfcs/issues/2765> is fixed
379        fn as_any(&self) -> &dyn std::any::Any;
380    }
381
382    /// A wrapper for analysis state.
383    struct Bundle<A: Analysis> {
384        /// The algorithm instance used to derive the results.
385        analysis: A,
386        /// A vector of results.
387        results: Vec<A::Value>,
388        /// Counts down with each `LetRec` re-iteration, to avoid unbounded effort.
389        /// Should it reach zero, the analysis should discard its results and restart as if pessimistic.
390        fuel: usize,
391        /// Allow optimistic analysis for `A` (otherwise we always do pesimistic
392        /// analysis, even if a [`crate::analysis::Lattice`] is available for `A`).
393        allow_optimistic: bool,
394    }
395
396    impl<A: Analysis> AnalysisBundle for Bundle<A> {
397        fn analyse(&mut self, exprs: &[&MirRelationExpr], depends: &Derived) -> bool {
398            self.results.clear();
399            // Attempt optimistic analysis, and if that fails go pessimistic.
400            let update = A::lattice()
401                .filter(|_| self.allow_optimistic)
402                .and_then(|lattice| {
403                    for _ in exprs.iter() {
404                        self.results.push(lattice.top());
405                    }
406                    self.analyse_optimistic(exprs, 0, exprs.len(), depends, &*lattice)
407                        .ok()
408                })
409                .unwrap_or_else(|| {
410                    self.results.clear();
411                    self.analyse_pessimistic(exprs, depends)
412                });
413            assert_eq!(self.results.len(), exprs.len());
414            update
415        }
416        fn as_any(&self) -> &dyn std::any::Any {
417            self
418        }
419    }
420
421    impl<A: Analysis> Bundle<A> {
422        /// Analysis that starts optimistically but is only correct at a fixed point.
423        ///
424        /// Will fail out to `analyse_pessimistic` if the lattice is missing, or `self.fuel` is exhausted.
425        /// When successful, the result indicates whether new information was produced for `exprs.last()`.
426        fn analyse_optimistic(
427            &mut self,
428            exprs: &[&MirRelationExpr],
429            lower: usize,
430            upper: usize,
431            depends: &Derived,
432            lattice: &dyn crate::analysis::Lattice<A::Value>,
433        ) -> Result<bool, ()> {
434            // Repeatedly re-evaluate the whole tree bottom up, until no changes of fuel spent.
435            let mut changed = true;
436            while changed {
437                changed = false;
438
439                // Bail out if we have done too many `LetRec` passes in this analysis.
440                self.fuel -= 1;
441                if self.fuel == 0 {
442                    return Err(());
443                }
444
445                // Track if repetitions may be required, to avoid iteration if they are not.
446                let mut is_recursive = false;
447                // Update each derived value and track if any have changed.
448                for index in lower..upper {
449                    let value = self.derive(exprs[index], index, depends);
450                    changed = lattice.meet_assign(&mut self.results[index], value) || changed;
451                    if let MirRelationExpr::LetRec { .. } = &exprs[index] {
452                        is_recursive = true;
453                    }
454                }
455
456                // Un-set the potential loop if there was no recursion.
457                if !is_recursive {
458                    changed = false;
459                }
460            }
461            Ok(true)
462        }
463
464        /// Analysis that starts conservatively and can be stopped at any point.
465        ///
466        /// Result indicates whether new information was produced for `exprs.last()`.
467        fn analyse_pessimistic(&mut self, exprs: &[&MirRelationExpr], depends: &Derived) -> bool {
468            // TODO: consider making iterative, from some `bottom()` up using `join_assign()`.
469            self.results.clear();
470            for (index, expr) in exprs.iter().enumerate() {
471                self.results.push(self.derive(expr, index, depends));
472            }
473            true
474        }
475
476        #[inline]
477        fn derive(&self, expr: &MirRelationExpr, index: usize, depends: &Derived) -> A::Value {
478            self.analysis
479                .derive(expr, index, &self.results[..], depends)
480        }
481    }
482}
483
484/// Expression subtree sizes
485///
486/// This analysis counts the number of expressions in each subtree, and is most useful
487/// for navigating the results of other analyses that are offset by subtree sizes.
488pub mod subtree {
489
490    use super::{Analysis, Derived};
491    use mz_expr::MirRelationExpr;
492
493    /// Analysis that determines the size in child expressions of relation expressions.
494    #[derive(Debug)]
495    pub struct SubtreeSize;
496
497    impl Analysis for SubtreeSize {
498        type Value = usize;
499
500        fn derive(
501            &self,
502            expr: &MirRelationExpr,
503            index: usize,
504            results: &[Self::Value],
505            _depends: &Derived,
506        ) -> Self::Value {
507            match expr {
508                MirRelationExpr::Constant { .. } | MirRelationExpr::Get { .. } => 1,
509                _ => {
510                    let mut offset = 1;
511                    for _ in expr.children() {
512                        offset += results[index - offset];
513                    }
514                    offset
515                }
516            }
517        }
518    }
519}
520
521/// Expression arities
522mod arity {
523
524    use super::{Analysis, Derived};
525    use mz_expr::MirRelationExpr;
526
527    /// Analysis that determines the number of columns of relation expressions.
528    #[derive(Debug)]
529    pub struct Arity;
530
531    impl Analysis for Arity {
532        type Value = usize;
533
534        fn derive(
535            &self,
536            expr: &MirRelationExpr,
537            index: usize,
538            results: &[Self::Value],
539            depends: &Derived,
540        ) -> Self::Value {
541            let mut offsets = depends
542                .children_of_rev(index, expr.children().count())
543                .map(|child| results[child])
544                .collect::<Vec<_>>();
545            offsets.reverse();
546            expr.arity_with_input_arities(offsets.into_iter())
547        }
548    }
549}
550
551/// Expression types
552mod repr_types {
553
554    use super::{Analysis, Derived, Lattice};
555    use itertools::Itertools;
556    use mz_expr::MirRelationExpr;
557    use mz_repr::ReprColumnType;
558
559    /// Analysis that determines the type of relation expressions.
560    ///
561    /// The value is `Some` when it discovers column types, and `None` in the case that
562    /// it has discovered no constraining information on the column types. The `None`
563    /// variant should only occur in the course of iteration, and should not be revealed
564    /// as an output of the analysis. One can `unwrap()` the result, and if it errors then
565    /// either the expression is malformed or the analysis has a bug.
566    ///
567    /// The analysis will panic if an expression is not well typed (i.e. if `try_col_with_input_cols`
568    /// returns an error).
569    #[derive(Debug)]
570    pub struct ReprRelationType;
571
572    impl Analysis for ReprRelationType {
573        type Value = Option<Vec<ReprColumnType>>;
574
575        fn derive(
576            &self,
577            expr: &MirRelationExpr,
578            index: usize,
579            results: &[Self::Value],
580            depends: &Derived,
581        ) -> Self::Value {
582            let offsets = depends
583                .children_of_rev(index, expr.children().count())
584                .map(|child| &results[child])
585                .collect::<Vec<_>>();
586
587            // For most expressions we'll apply `try_col_with_input_cols`, but for `Get` expressions
588            // we'll want to combine what we know (iteratively) with the stated `Get::typ`.
589            match expr {
590                MirRelationExpr::Get {
591                    id: mz_expr::Id::Local(i),
592                    typ,
593                    ..
594                } => {
595                    let mut result = typ.column_types.iter().cloned().collect_vec();
596                    if let Some(o) = depends.bindings().get(i) {
597                        if let Some(t) = results.get(*o) {
598                            if let Some(rec_typ) = t {
599                                // Reconcile nullability statements.
600                                // Unclear if we should trust `typ`.
601                                assert_eq!(result.len(), rec_typ.len());
602                                result.clone_from(rec_typ);
603                                for (res, col) in result.iter_mut().zip_eq(typ.column_types.iter())
604                                {
605                                    if !col.nullable {
606                                        res.nullable = false;
607                                    }
608                                }
609                            } else {
610                                // Our `None` information indicates that we are optimistically
611                                // assuming the best, including that all columns are non-null.
612                                // This should only happen in the first visit to a `Get` expr.
613                                // Use `typ`, but flatten nullability.
614                                for col in result.iter_mut() {
615                                    col.nullable = false;
616                                }
617                            }
618                        }
619                    }
620                    Some(result)
621                }
622                _ => {
623                    // Every expression with inputs should have non-`None` inputs at this point.
624                    let input_cols = offsets.into_iter().rev().map(|o| {
625                        o.as_ref()
626                            .expect("ReprRelationType analysis discovered type-less expression")
627                    });
628
629                    let repr_typ = expr.try_col_with_input_cols(input_cols).unwrap();
630                    Some(repr_typ)
631                }
632            }
633        }
634
635        fn lattice() -> Option<Box<dyn Lattice<Self::Value>>> {
636            Some(Box::new(RTLattice))
637        }
638    }
639
640    struct RTLattice;
641
642    impl Lattice<Option<Vec<ReprColumnType>>> for RTLattice {
643        fn top(&self) -> Option<Vec<ReprColumnType>> {
644            None
645        }
646        fn meet_assign(
647            &self,
648            a: &mut Option<Vec<ReprColumnType>>,
649            b: Option<Vec<ReprColumnType>>,
650        ) -> bool {
651            match (a, b) {
652                (_, None) => false,
653                (Some(a), Some(b)) => {
654                    let mut changed = false;
655                    assert_eq!(a.len(), b.len());
656                    for (at, bt) in a.iter_mut().zip_eq(b.iter()) {
657                        assert_eq!(at.scalar_type, bt.scalar_type);
658                        if !at.nullable && bt.nullable {
659                            at.nullable = true;
660                            changed = true;
661                        }
662                    }
663                    changed
664                }
665                (a, b) => {
666                    *a = b;
667                    true
668                }
669            }
670        }
671    }
672}
673
674/// Expression unique keys
675mod unique_keys {
676
677    use super::arity::Arity;
678    use super::{Analysis, Derived, DerivedBuilder, Lattice};
679    use mz_expr::MirRelationExpr;
680
681    /// Analysis that determines the unique keys of relation expressions.
682    ///
683    /// The analysis value is a `Vec<Vec<usize>>`, which should be interpreted as a list
684    /// of sets of column identifiers, each set of which has the property that there is at
685    /// most one instance of each assignment of values to those columns.
686    ///
687    /// The sets are minimal, in that any superset of another set is removed from the list.
688    /// Any superset of unique key columns are also unique key columns.
689    #[derive(Debug)]
690    pub struct UniqueKeys;
691
692    impl Analysis for UniqueKeys {
693        type Value = Vec<Vec<usize>>;
694
695        fn announce_dependencies(builder: &mut DerivedBuilder) {
696            builder.require(Arity);
697        }
698
699        fn derive(
700            &self,
701            expr: &MirRelationExpr,
702            index: usize,
703            results: &[Self::Value],
704            depends: &Derived,
705        ) -> Self::Value {
706            let mut offsets = depends
707                .children_of_rev(index, expr.children().count())
708                .collect::<Vec<_>>();
709            offsets.reverse();
710
711            match expr {
712                MirRelationExpr::Get {
713                    id: mz_expr::Id::Local(i),
714                    typ,
715                    ..
716                } => {
717                    // We have information from `typ` and from the analysis.
718                    // We should "join" them, unioning and reducing the keys.
719                    let mut keys = typ.keys.clone();
720                    if let Some(o) = depends.bindings().get(i) {
721                        if let Some(ks) = results.get(*o) {
722                            for k in ks.iter() {
723                                antichain_insert(&mut keys, k.clone());
724                            }
725                            keys.extend(ks.iter().cloned());
726                            keys.sort();
727                            keys.dedup();
728                        }
729                    }
730                    keys
731                }
732                _ => {
733                    let arity = depends.results::<Arity>();
734                    expr.keys_with_input_keys(
735                        offsets.iter().map(|o| arity[*o]),
736                        offsets.iter().map(|o| &results[*o]),
737                    )
738                }
739            }
740        }
741
742        fn lattice() -> Option<Box<dyn Lattice<Self::Value>>> {
743            Some(Box::new(UKLattice))
744        }
745    }
746
747    fn antichain_insert(into: &mut Vec<Vec<usize>>, item: Vec<usize>) {
748        // Insert only if there is not a dominating element of `into`.
749        if into.iter().all(|key| !key.iter().all(|k| item.contains(k))) {
750            into.retain(|key| !key.iter().all(|k| item.contains(k)));
751            into.push(item);
752        }
753    }
754
755    /// Lattice for sets of columns that define a unique key.
756    ///
757    /// An element `Vec<Vec<usize>>` describes all sets of columns `Vec<usize>` that are a
758    /// superset of some set of columns in the lattice element.
759    struct UKLattice;
760
761    impl Lattice<Vec<Vec<usize>>> for UKLattice {
762        fn top(&self) -> Vec<Vec<usize>> {
763            vec![vec![]]
764        }
765        fn meet_assign(&self, a: &mut Vec<Vec<usize>>, b: Vec<Vec<usize>>) -> bool {
766            a.sort();
767            a.dedup();
768            let mut c = Vec::new();
769            for cols_a in a.iter_mut() {
770                cols_a.sort();
771                cols_a.dedup();
772                for cols_b in b.iter() {
773                    let mut cols_c = cols_a.iter().chain(cols_b).cloned().collect::<Vec<_>>();
774                    cols_c.sort();
775                    cols_c.dedup();
776                    antichain_insert(&mut c, cols_c);
777                }
778            }
779            c.sort();
780            c.dedup();
781            std::mem::swap(a, &mut c);
782            a != &mut c
783        }
784    }
785}
786
787/// Determines if accumulated frequences can be negative.
788///
789/// This analysis assumes that globally identified collection have the property, and it is
790/// incorrect to apply it to expressions that reference external collections that may have
791/// negative accumulations.
792mod non_negative {
793
794    use super::{Analysis, Derived, Lattice};
795    use crate::analysis::common_lattice::BoolLattice;
796    use mz_expr::{Id, MirRelationExpr};
797
798    /// Analysis that determines if all accumulations at all times are non-negative.
799    ///
800    /// The analysis assumes that `Id::Global` references only refer to non-negative collections.
801    #[derive(Debug)]
802    pub struct NonNegative;
803
804    impl Analysis for NonNegative {
805        type Value = bool;
806
807        fn derive(
808            &self,
809            expr: &MirRelationExpr,
810            index: usize,
811            results: &[Self::Value],
812            depends: &Derived,
813        ) -> Self::Value {
814            match expr {
815                MirRelationExpr::Constant { rows, .. } => rows
816                    .as_ref()
817                    .map(|r| r.iter().all(|(_, diff)| *diff >= mz_repr::Diff::ZERO))
818                    .unwrap_or(true),
819                MirRelationExpr::Get { id, .. } => match id {
820                    Id::Local(id) => {
821                        let index = *depends
822                            .bindings()
823                            .get(id)
824                            .expect("Dependency info not found");
825                        *results.get(index).unwrap_or(&false)
826                    }
827                    Id::Global(_) => true,
828                },
829                // Negate must be false unless input is "non-positive".
830                MirRelationExpr::Negate { .. } => false,
831                // Threshold ensures non-negativity.
832                MirRelationExpr::Threshold { .. } => true,
833                // Reduce errors on negative input.
834                MirRelationExpr::Reduce { .. } => true,
835                MirRelationExpr::Join { .. } => {
836                    // If all inputs are non-negative, the join is non-negative.
837                    depends
838                        .children_of_rev(index, expr.children().count())
839                        .all(|off| results[off])
840                }
841                MirRelationExpr::Union { base, inputs } => {
842                    // If all inputs are non-negative, the union is non-negative.
843                    let all_non_negative = depends
844                        .children_of_rev(index, expr.children().count())
845                        .all(|off| results[off]);
846
847                    if all_non_negative {
848                        return true;
849                    }
850
851                    // We look for the pattern `Union { base, Negate(Subset(base)) }`.
852                    // TODO: take some care to ensure that union fusion does not introduce a regression.
853                    if inputs.len() == 1 {
854                        if let MirRelationExpr::Negate { input } = &inputs[0] {
855                            // If `base` is non-negative, and `is_superset_of(base, input)`, return true.
856                            // TODO: this is not correct until we have `is_superset_of` validate non-negativity
857                            // as it goes, but it matches the current implementation.
858                            let mut children = depends.children_of_rev(index, 2);
859                            let _negate = children.next().unwrap();
860                            let base_id = children.next().unwrap();
861                            debug_assert_eq!(children.next(), None);
862                            if results[base_id] && is_superset_of(&*base, &*input) {
863                                return true;
864                            }
865                        }
866                    }
867
868                    false
869                }
870                _ => results[index - 1],
871            }
872        }
873
874        fn lattice() -> Option<Box<dyn Lattice<Self::Value>>> {
875            Some(Box::new(BoolLattice))
876        }
877    }
878
879    /// Returns true only if `rhs.negate().union(lhs)` contains only non-negative multiplicities
880    /// once consolidated.
881    ///
882    /// Informally, this happens when `rhs` is a multiset subset of `lhs`, meaning the multiplicity
883    /// of any record in `rhs` is at most the multiplicity of the same record in `lhs`.
884    ///
885    /// This method recursively descends each of `lhs` and `rhs` and performs a great many equality
886    /// tests, which has the potential to be quadratic. We should consider restricting its attention
887    /// to `Get` identifiers, under the premise that equal AST nodes would necessarily be identified
888    /// by common subexpression elimination. This requires care around recursively bound identifiers.
889    ///
890    /// These rules are .. somewhat arbitrary, and likely reflect observed opportunities. For example,
891    /// while we do relate `distinct(filter(A)) <= distinct(A)`, we do not relate `distinct(A) <= A`.
892    /// Further thoughts about the class of optimizations, and whether there should be more or fewer,
893    /// can be found here: <https://github.com/MaterializeInc/database-issues/issues/4044>.
894    fn is_superset_of(mut lhs: &MirRelationExpr, mut rhs: &MirRelationExpr) -> bool {
895        // This implementation is iterative.
896        // Before converting this implementation to recursive (e.g. to improve its accuracy)
897        // make sure to use the `CheckedRecursion` struct to avoid blowing the stack.
898        while lhs != rhs {
899            match rhs {
900                MirRelationExpr::Filter { input, .. } => rhs = &**input,
901                MirRelationExpr::TopK { input, .. } => rhs = &**input,
902                // Descend in both sides if the current roots are
903                // projections with the same `outputs` vector.
904                MirRelationExpr::Project {
905                    input: rhs_input,
906                    outputs: rhs_outputs,
907                } => match lhs {
908                    MirRelationExpr::Project {
909                        input: lhs_input,
910                        outputs: lhs_outputs,
911                    } if lhs_outputs == rhs_outputs => {
912                        rhs = &**rhs_input;
913                        lhs = &**lhs_input;
914                    }
915                    _ => return false,
916                },
917                // Descend in both sides if the current roots are reduces with empty aggregates
918                // on the same set of keys (that is, a distinct operation on those keys).
919                MirRelationExpr::Reduce {
920                    input: rhs_input,
921                    group_key: rhs_group_key,
922                    aggregates: rhs_aggregates,
923                    monotonic: _,
924                    expected_group_size: _,
925                } if rhs_aggregates.is_empty() => match lhs {
926                    MirRelationExpr::Reduce {
927                        input: lhs_input,
928                        group_key: lhs_group_key,
929                        aggregates: lhs_aggregates,
930                        monotonic: _,
931                        expected_group_size: _,
932                    } if lhs_aggregates.is_empty() && lhs_group_key == rhs_group_key => {
933                        rhs = &**rhs_input;
934                        lhs = &**lhs_input;
935                    }
936                    _ => return false,
937                },
938                _ => {
939                    // TODO: Imagine more complex reasoning here!
940                    return false;
941                }
942            }
943        }
944        true
945    }
946}
947
948mod column_names {
949    use std::ops::Range;
950    use std::sync::Arc;
951
952    use super::Analysis;
953    use mz_expr::{AggregateFunc, Id, MirRelationExpr, MirScalarExpr, TableFunc};
954    use mz_repr::explain::ExprHumanizer;
955    use mz_repr::{GlobalId, UNKNOWN_COLUMN_NAME};
956    use mz_sql::ORDINALITY_COL_NAME;
957
958    /// An abstract type denoting an inferred column name.
959    #[derive(Debug, Clone)]
960    pub enum ColumnName {
961        /// A column with name inferred to be equal to a GlobalId schema column.
962        Global(GlobalId, usize),
963        /// An anonymous expression named after the top-level function name.
964        Aggregate(AggregateFunc, Box<ColumnName>),
965        /// A column with a name that has been saved from the original SQL query.
966        Annotated(Arc<str>),
967        /// An column with an unknown name.
968        Unknown,
969    }
970
971    impl ColumnName {
972        /// Return `true` iff the variant has an inferred name.
973        pub fn is_known(&self) -> bool {
974            match self {
975                Self::Global(..) | Self::Aggregate(..) => true,
976                // We treat annotated columns as unknown because we would rather
977                // override them with inferred names, if we can.
978                Self::Annotated(..) | Self::Unknown => false,
979            }
980        }
981
982        /// Humanize the column to a [`String`], returns an empty [`String`] for
983        /// unknown columns (or columns named `UNKNOWN_COLUMN_NAME`).
984        pub fn humanize(&self, humanizer: &dyn ExprHumanizer) -> String {
985            match self {
986                Self::Global(id, c) => humanizer.humanize_column(*id, *c).unwrap_or_default(),
987                Self::Aggregate(func, expr) => {
988                    let func = func.name();
989                    let expr = expr.humanize(humanizer);
990                    if expr.is_empty() {
991                        String::from(func)
992                    } else {
993                        format!("{func}_{expr}")
994                    }
995                }
996                Self::Annotated(name) => name.to_string(),
997                Self::Unknown => String::new(),
998            }
999        }
1000
1001        /// Clone this column name if it is known, otherwise try to use the provided
1002        /// name if it is available.
1003        pub fn cloned_or_annotated(&self, name: &Option<Arc<str>>) -> Self {
1004            match self {
1005                Self::Global(..) | Self::Aggregate(..) | Self::Annotated(..) => self.clone(),
1006                Self::Unknown => name
1007                    .as_ref()
1008                    .filter(|name| name.as_ref() != UNKNOWN_COLUMN_NAME)
1009                    .map_or_else(|| Self::Unknown, |name| Self::Annotated(Arc::clone(name))),
1010            }
1011        }
1012    }
1013
1014    /// Compute the column types of each subtree of a [MirRelationExpr] from the
1015    /// bottom-up.
1016    #[derive(Debug)]
1017    pub struct ColumnNames;
1018
1019    impl ColumnNames {
1020        /// fallback schema consisting of ordinal column names: #0, #1, ...
1021        fn anonymous(range: Range<usize>) -> impl Iterator<Item = ColumnName> {
1022            range.map(|_| ColumnName::Unknown)
1023        }
1024
1025        /// fallback schema consisting of ordinal column names: #0, #1, ...
1026        fn extend_with_scalars(column_names: &mut Vec<ColumnName>, scalars: &Vec<MirScalarExpr>) {
1027            for scalar in scalars {
1028                column_names.push(match scalar {
1029                    MirScalarExpr::Column(c, name) => column_names[*c].cloned_or_annotated(&name.0),
1030                    _ => ColumnName::Unknown,
1031                });
1032            }
1033        }
1034    }
1035
1036    impl Analysis for ColumnNames {
1037        type Value = Vec<ColumnName>;
1038
1039        fn derive(
1040            &self,
1041            expr: &MirRelationExpr,
1042            index: usize,
1043            results: &[Self::Value],
1044            depends: &crate::analysis::Derived,
1045        ) -> Self::Value {
1046            use MirRelationExpr::*;
1047
1048            match expr {
1049                Constant { rows: _, typ } => {
1050                    // Fallback to an anonymous schema for constants.
1051                    ColumnNames::anonymous(0..typ.arity()).collect()
1052                }
1053                Get {
1054                    id: Id::Global(id),
1055                    typ,
1056                    access_strategy: _,
1057                } => {
1058                    // Emit ColumnName::Global instances for each column in the
1059                    // `Get` type. Those can be resolved to real names later when an
1060                    // ExpressionHumanizer is available.
1061                    (0..typ.columns().len())
1062                        .map(|c| ColumnName::Global(*id, c))
1063                        .collect()
1064                }
1065                Get {
1066                    id: Id::Local(id),
1067                    typ,
1068                    access_strategy: _,
1069                } => {
1070                    let index_child = *depends.bindings().get(id).expect("id in scope");
1071                    if index_child < results.len() {
1072                        results[index_child].clone()
1073                    } else {
1074                        // Possible because we infer LetRec bindings in order. This
1075                        // can be improved by introducing a fixpoint loop in the
1076                        // Env<A>::schedule_tasks LetRec handling block.
1077                        ColumnNames::anonymous(0..typ.arity()).collect()
1078                    }
1079                }
1080                Let {
1081                    id: _,
1082                    value: _,
1083                    body: _,
1084                } => {
1085                    // Return the column names of the `body`.
1086                    results[index - 1].clone()
1087                }
1088                LetRec {
1089                    ids: _,
1090                    values: _,
1091                    limits: _,
1092                    body: _,
1093                } => {
1094                    // Return the column names of the `body`.
1095                    results[index - 1].clone()
1096                }
1097                Project { input: _, outputs } => {
1098                    // Permute the column names of the input.
1099                    let input_column_names = &results[index - 1];
1100                    let mut column_names = vec![];
1101                    for col in outputs {
1102                        column_names.push(input_column_names[*col].clone());
1103                    }
1104                    column_names
1105                }
1106                Map { input: _, scalars } => {
1107                    // Extend the column names of the input with anonymous columns.
1108                    let mut column_names = results[index - 1].clone();
1109                    Self::extend_with_scalars(&mut column_names, scalars);
1110                    column_names
1111                }
1112                FlatMap {
1113                    input: _,
1114                    func,
1115                    exprs: _,
1116                } => {
1117                    // Extend the column names of the input with anonymous columns.
1118                    let mut column_names = results[index - 1].clone();
1119                    let func_output_start = column_names.len();
1120                    let func_output_end = column_names.len() + func.output_arity();
1121                    column_names.extend(Self::anonymous(func_output_start..func_output_end));
1122                    if let TableFunc::WithOrdinality { .. } = func {
1123                        // We know the name of the last column
1124                        // TODO(ggevay): generalize this to meaningful col names for all table functions
1125                        **column_names.last_mut().as_mut().expect(
1126                            "there is at least one output column, from the WITH ORDINALITY",
1127                        ) = ColumnName::Annotated(ORDINALITY_COL_NAME.into());
1128                    }
1129                    column_names
1130                }
1131                Filter {
1132                    input: _,
1133                    predicates: _,
1134                } => {
1135                    // Return the column names of the `input`.
1136                    results[index - 1].clone()
1137                }
1138                Join {
1139                    inputs: _,
1140                    equivalences: _,
1141                    implementation: _,
1142                } => {
1143                    let mut input_results = depends
1144                        .children_of_rev(index, expr.children().count())
1145                        .map(|child| &results[child])
1146                        .collect::<Vec<_>>();
1147                    input_results.reverse();
1148
1149                    let mut column_names = vec![];
1150                    for input_column_names in input_results {
1151                        column_names.extend(input_column_names.iter().cloned());
1152                    }
1153                    column_names
1154                }
1155                Reduce {
1156                    input: _,
1157                    group_key,
1158                    aggregates,
1159                    monotonic: _,
1160                    expected_group_size: _,
1161                } => {
1162                    // We clone and extend the input vector and then remove the part
1163                    // associated with the input at the end.
1164                    let mut column_names = results[index - 1].clone();
1165                    let input_arity = column_names.len();
1166
1167                    // Infer the group key part.
1168                    Self::extend_with_scalars(&mut column_names, group_key);
1169                    // Infer the aggregates part.
1170                    for aggregate in aggregates.iter() {
1171                        // The inferred name will consist of (1) the aggregate
1172                        // function name and (2) the aggregate expression (iff
1173                        // it is a simple column reference).
1174                        let func = aggregate.func.clone();
1175                        let expr = match aggregate.expr.as_column() {
1176                            Some(c) => column_names.get(c).unwrap_or(&ColumnName::Unknown).clone(),
1177                            None => ColumnName::Unknown,
1178                        };
1179                        column_names.push(ColumnName::Aggregate(func, Box::new(expr)));
1180                    }
1181                    // Remove the prefix associated with the input
1182                    column_names.drain(0..input_arity);
1183
1184                    column_names
1185                }
1186                TopK {
1187                    input: _,
1188                    group_key: _,
1189                    order_key: _,
1190                    limit: _,
1191                    offset: _,
1192                    monotonic: _,
1193                    expected_group_size: _,
1194                } => {
1195                    // Return the column names of the `input`.
1196                    results[index - 1].clone()
1197                }
1198                Negate { input: _ } => {
1199                    // Return the column names of the `input`.
1200                    results[index - 1].clone()
1201                }
1202                Threshold { input: _ } => {
1203                    // Return the column names of the `input`.
1204                    results[index - 1].clone()
1205                }
1206                Union { base: _, inputs: _ } => {
1207                    // Use the first non-empty column across all inputs.
1208                    let mut column_names = vec![];
1209
1210                    let mut inputs_results = depends
1211                        .children_of_rev(index, expr.children().count())
1212                        .map(|child| &results[child])
1213                        .collect::<Vec<_>>();
1214
1215                    let base_results = inputs_results.pop().unwrap();
1216                    inputs_results.reverse();
1217
1218                    for (i, mut column_name) in base_results.iter().cloned().enumerate() {
1219                        for input_results in inputs_results.iter() {
1220                            if !column_name.is_known() && input_results[i].is_known() {
1221                                column_name = input_results[i].clone();
1222                                break;
1223                            }
1224                        }
1225                        column_names.push(column_name);
1226                    }
1227
1228                    column_names
1229                }
1230                ArrangeBy { input: _, keys: _ } => {
1231                    // Return the column names of the `input`.
1232                    results[index - 1].clone()
1233                }
1234            }
1235        }
1236    }
1237}
1238
1239mod explain {
1240    //! Derived Analysis framework and definitions.
1241
1242    use std::collections::BTreeMap;
1243
1244    use mz_expr::MirRelationExpr;
1245    use mz_expr::explain::{ExplainContext, HumanizedExplain, HumanizerMode};
1246    use mz_ore::stack::RecursionLimitError;
1247    use mz_repr::explain::{Analyses, AnnotatedPlan};
1248
1249    use crate::analysis::equivalences::{Equivalences, HumanizedEquivalenceClasses};
1250
1251    // Analyses should have shortened paths when exported.
1252    use super::DerivedBuilder;
1253
1254    impl<'c> From<&ExplainContext<'c>> for DerivedBuilder<'c> {
1255        fn from(context: &ExplainContext<'c>) -> DerivedBuilder<'c> {
1256            let mut builder = DerivedBuilder::new(context.features);
1257            if context.config.subtree_size {
1258                builder.require(super::SubtreeSize);
1259            }
1260            if context.config.non_negative {
1261                builder.require(super::NonNegative);
1262            }
1263            if context.config.types {
1264                builder.require(super::ReprRelationType);
1265            }
1266            if context.config.arity {
1267                builder.require(super::Arity);
1268            }
1269            if context.config.keys {
1270                builder.require(super::UniqueKeys);
1271            }
1272            if context.config.cardinality {
1273                builder.require(super::Cardinality::with_stats(
1274                    context.cardinality_stats.clone(),
1275                ));
1276            }
1277            if context.config.column_names || context.config.humanized_exprs {
1278                builder.require(super::ColumnNames);
1279            }
1280            if context.config.equivalences {
1281                builder.require(Equivalences);
1282            }
1283            builder
1284        }
1285    }
1286
1287    /// Produce an [`AnnotatedPlan`] wrapping the given [`MirRelationExpr`] along
1288    /// with [`Analyses`] derived from the given context configuration.
1289    pub fn annotate_plan<'a>(
1290        plan: &'a MirRelationExpr,
1291        context: &'a ExplainContext,
1292    ) -> Result<AnnotatedPlan<'a, MirRelationExpr>, RecursionLimitError> {
1293        let mut annotations = BTreeMap::<&MirRelationExpr, Analyses>::default();
1294        let config = context.config;
1295
1296        // We want to annotate the plan with analyses in the following cases:
1297        // 1. An Analysis was explicitly requested in the ExplainConfig.
1298        // 2. Humanized expressions were requested in the ExplainConfig (in which
1299        //    case we need to derive the ColumnNames Analysis).
1300        if config.requires_analyses() || config.humanized_exprs {
1301            // get the annotation keys
1302            let subtree_refs = plan.post_order_vec();
1303            // get the annotation values
1304            let builder = DerivedBuilder::from(context);
1305            let derived = builder.visit(plan);
1306
1307            if config.subtree_size {
1308                for (expr, subtree_size) in std::iter::zip(
1309                    subtree_refs.iter(),
1310                    derived.results::<super::SubtreeSize>().into_iter(),
1311                ) {
1312                    let analyses = annotations.entry(expr).or_default();
1313                    analyses.subtree_size = Some(*subtree_size);
1314                }
1315            }
1316            if config.non_negative {
1317                for (expr, non_negative) in std::iter::zip(
1318                    subtree_refs.iter(),
1319                    derived.results::<super::NonNegative>().into_iter(),
1320                ) {
1321                    let analyses = annotations.entry(expr).or_default();
1322                    analyses.non_negative = Some(*non_negative);
1323                }
1324            }
1325
1326            if config.arity {
1327                for (expr, arity) in std::iter::zip(
1328                    subtree_refs.iter(),
1329                    derived.results::<super::Arity>().into_iter(),
1330                ) {
1331                    let analyses = annotations.entry(expr).or_default();
1332                    analyses.arity = Some(*arity);
1333                }
1334            }
1335
1336            if config.types {
1337                for (expr, types) in std::iter::zip(
1338                    subtree_refs.iter(),
1339                    derived.results::<super::ReprRelationType>().into_iter(),
1340                ) {
1341                    let analyses = annotations.entry(expr).or_default();
1342                    analyses.types = Some(types.clone());
1343                }
1344            }
1345
1346            if config.keys {
1347                for (expr, keys) in std::iter::zip(
1348                    subtree_refs.iter(),
1349                    derived.results::<super::UniqueKeys>().into_iter(),
1350                ) {
1351                    let analyses = annotations.entry(expr).or_default();
1352                    analyses.keys = Some(keys.clone());
1353                }
1354            }
1355
1356            if config.cardinality {
1357                for (expr, card) in std::iter::zip(
1358                    subtree_refs.iter(),
1359                    derived.results::<super::Cardinality>().into_iter(),
1360                ) {
1361                    let analyses = annotations.entry(expr).or_default();
1362                    analyses.cardinality = Some(card.to_string());
1363                }
1364            }
1365
1366            if config.column_names || config.humanized_exprs {
1367                for (expr, column_names) in std::iter::zip(
1368                    subtree_refs.iter(),
1369                    derived.results::<super::ColumnNames>().into_iter(),
1370                ) {
1371                    let analyses = annotations.entry(expr).or_default();
1372                    let value = column_names
1373                        .iter()
1374                        .map(|column_name| column_name.humanize(context.humanizer))
1375                        .collect();
1376                    analyses.column_names = Some(value);
1377                }
1378            }
1379
1380            if config.equivalences {
1381                for (expr, equivs) in std::iter::zip(
1382                    subtree_refs.iter(),
1383                    derived.results::<Equivalences>().into_iter(),
1384                ) {
1385                    let analyses = annotations.entry(expr).or_default();
1386                    analyses.equivalences = Some(match equivs.as_ref() {
1387                        Some(equivs) => HumanizedEquivalenceClasses {
1388                            equivalence_classes: equivs,
1389                            cols: analyses.column_names.as_ref(),
1390                            mode: HumanizedExplain::new(config.redacted),
1391                        }
1392                        .to_string(),
1393                        None => "<empty collection>".to_string(),
1394                    });
1395                }
1396            }
1397        }
1398
1399        Ok(AnnotatedPlan { plan, annotations })
1400    }
1401}
1402
1403/// Definition and helper structs for the [`Cardinality`] Analysis.
1404mod cardinality {
1405    use std::collections::{BTreeMap, BTreeSet};
1406
1407    use mz_expr::{
1408        BinaryFunc, Id, JoinImplementation, MirRelationExpr, MirScalarExpr, TableFunc, UnaryFunc,
1409        VariadicFunc,
1410    };
1411    use mz_ore::cast::{CastFrom, CastLossy, TryCastFrom};
1412    use mz_repr::GlobalId;
1413
1414    use ordered_float::OrderedFloat;
1415
1416    use super::{Analysis, Arity, SubtreeSize, UniqueKeys};
1417
1418    /// Compute the estimated cardinality of each subtree of a [MirRelationExpr] from the bottom up.
1419    #[allow(missing_debug_implementations)]
1420    pub struct Cardinality {
1421        /// Cardinalities for globally named entities
1422        pub stats: BTreeMap<GlobalId, usize>,
1423    }
1424
1425    impl Cardinality {
1426        /// A cardinality estimator with provided statistics for the given global identifiers
1427        pub fn with_stats(stats: BTreeMap<GlobalId, usize>) -> Self {
1428            Cardinality { stats }
1429        }
1430    }
1431
1432    impl Default for Cardinality {
1433        fn default() -> Self {
1434            Cardinality {
1435                stats: BTreeMap::new(),
1436            }
1437        }
1438    }
1439
1440    /// Cardinality estimates
1441    #[derive(Clone, Copy, Debug, PartialEq, Eq, PartialOrd, Ord)]
1442    pub enum CardinalityEstimate {
1443        Unknown,
1444        Estimate(OrderedFloat<f64>),
1445    }
1446
1447    impl CardinalityEstimate {
1448        pub fn max(lhs: CardinalityEstimate, rhs: CardinalityEstimate) -> CardinalityEstimate {
1449            use CardinalityEstimate::*;
1450            match (lhs, rhs) {
1451                (Estimate(lhs), Estimate(rhs)) => Estimate(std::cmp::max(lhs, rhs)),
1452                _ => Unknown,
1453            }
1454        }
1455
1456        pub fn rounded(&self) -> Option<usize> {
1457            match self {
1458                CardinalityEstimate::Estimate(OrderedFloat(f)) => {
1459                    let rounded = f.ceil();
1460                    let flattened = usize::cast_from(
1461                        u64::try_cast_from(rounded)
1462                            .expect("positive and representable cardinality estimate"),
1463                    );
1464
1465                    Some(flattened)
1466                }
1467                CardinalityEstimate::Unknown => None,
1468            }
1469        }
1470    }
1471
1472    impl std::ops::Add for CardinalityEstimate {
1473        type Output = CardinalityEstimate;
1474
1475        fn add(self, rhs: Self) -> Self::Output {
1476            use CardinalityEstimate::*;
1477            match (self, rhs) {
1478                (Estimate(lhs), Estimate(rhs)) => Estimate(lhs + rhs),
1479                _ => Unknown,
1480            }
1481        }
1482    }
1483
1484    impl std::ops::Sub for CardinalityEstimate {
1485        type Output = CardinalityEstimate;
1486
1487        fn sub(self, rhs: Self) -> Self::Output {
1488            use CardinalityEstimate::*;
1489            match (self, rhs) {
1490                (Estimate(lhs), Estimate(rhs)) => Estimate(lhs - rhs),
1491                _ => Unknown,
1492            }
1493        }
1494    }
1495
1496    impl std::ops::Sub<CardinalityEstimate> for f64 {
1497        type Output = CardinalityEstimate;
1498
1499        fn sub(self, rhs: CardinalityEstimate) -> Self::Output {
1500            use CardinalityEstimate::*;
1501            if let Estimate(OrderedFloat(rhs)) = rhs {
1502                Estimate(OrderedFloat(self - rhs))
1503            } else {
1504                Unknown
1505            }
1506        }
1507    }
1508
1509    impl std::ops::Mul for CardinalityEstimate {
1510        type Output = CardinalityEstimate;
1511
1512        fn mul(self, rhs: Self) -> Self::Output {
1513            use CardinalityEstimate::*;
1514            match (self, rhs) {
1515                (Estimate(lhs), Estimate(rhs)) => Estimate(lhs * rhs),
1516                _ => Unknown,
1517            }
1518        }
1519    }
1520
1521    impl std::ops::Mul<f64> for CardinalityEstimate {
1522        type Output = CardinalityEstimate;
1523
1524        fn mul(self, rhs: f64) -> Self::Output {
1525            if let CardinalityEstimate::Estimate(OrderedFloat(lhs)) = self {
1526                CardinalityEstimate::Estimate(OrderedFloat(lhs * rhs))
1527            } else {
1528                CardinalityEstimate::Unknown
1529            }
1530        }
1531    }
1532
1533    impl std::ops::Div for CardinalityEstimate {
1534        type Output = CardinalityEstimate;
1535
1536        fn div(self, rhs: Self) -> Self::Output {
1537            use CardinalityEstimate::*;
1538            match (self, rhs) {
1539                (Estimate(lhs), Estimate(rhs)) => Estimate(lhs / rhs),
1540                _ => Unknown,
1541            }
1542        }
1543    }
1544
1545    impl std::ops::Div<f64> for CardinalityEstimate {
1546        type Output = CardinalityEstimate;
1547
1548        fn div(self, rhs: f64) -> Self::Output {
1549            use CardinalityEstimate::*;
1550            if let Estimate(lhs) = self {
1551                Estimate(lhs / OrderedFloat(rhs))
1552            } else {
1553                Unknown
1554            }
1555        }
1556    }
1557
1558    impl std::iter::Sum for CardinalityEstimate {
1559        fn sum<I: Iterator<Item = Self>>(iter: I) -> Self {
1560            iter.fold(CardinalityEstimate::from(0.0), |acc, elt| acc + elt)
1561        }
1562    }
1563
1564    impl std::iter::Product for CardinalityEstimate {
1565        fn product<I: Iterator<Item = Self>>(iter: I) -> Self {
1566            iter.fold(CardinalityEstimate::from(1.0), |acc, elt| acc * elt)
1567        }
1568    }
1569
1570    impl From<usize> for CardinalityEstimate {
1571        fn from(value: usize) -> Self {
1572            Self::Estimate(OrderedFloat(f64::cast_lossy(value)))
1573        }
1574    }
1575
1576    impl From<f64> for CardinalityEstimate {
1577        fn from(value: f64) -> Self {
1578            Self::Estimate(OrderedFloat(value))
1579        }
1580    }
1581
1582    /// The default selectivity for predicates we know nothing about.
1583    ///
1584    /// But see also expr/src/scalar.rs for `FilterCharacteristics::worst_case_scaling_factor()` for a more nuanced take.
1585    pub const WORST_CASE_SELECTIVITY: OrderedFloat<f64> = OrderedFloat(0.1);
1586
1587    // This section defines how we estimate cardinality for each syntactic construct.
1588    //
1589    // We split it up into functions to make it all a bit more tractable to work with.
1590    impl Cardinality {
1591        fn flat_map(&self, tf: &TableFunc, input: CardinalityEstimate) -> CardinalityEstimate {
1592            match tf {
1593                TableFunc::Wrap { types, width } => {
1594                    input * (f64::cast_lossy(types.len()) / f64::cast_lossy(*width))
1595                }
1596                _ => {
1597                    // TODO(mgree) what explosion factor should we make up?
1598                    input * CardinalityEstimate::from(4.0)
1599                }
1600            }
1601        }
1602
1603        fn predicate(
1604            &self,
1605            predicate_expr: &MirScalarExpr,
1606            unique_columns: &BTreeSet<usize>,
1607        ) -> OrderedFloat<f64> {
1608            let index_selectivity = |expr: &MirScalarExpr| -> Option<OrderedFloat<f64>> {
1609                match expr {
1610                    MirScalarExpr::Column(col, _) => {
1611                        if unique_columns.contains(col) {
1612                            // TODO(mgree): when we have index cardinality statistics, they should go here when `expr` is a `MirScalarExpr::Column` that's in `unique_columns`
1613                            None
1614                        } else {
1615                            None
1616                        }
1617                    }
1618                    _ => None,
1619                }
1620            };
1621
1622            match predicate_expr {
1623                MirScalarExpr::Column(_, _)
1624                | MirScalarExpr::Literal(_, _)
1625                | MirScalarExpr::CallUnmaterializable(_) => OrderedFloat(1.0),
1626                MirScalarExpr::CallUnary { func, expr } => match func {
1627                    UnaryFunc::Not(_) => OrderedFloat(1.0) - self.predicate(expr, unique_columns),
1628                    UnaryFunc::IsTrue(_) | UnaryFunc::IsFalse(_) => OrderedFloat(0.5),
1629                    UnaryFunc::IsNull(_) => {
1630                        if let Some(icard) = index_selectivity(expr) {
1631                            icard
1632                        } else {
1633                            WORST_CASE_SELECTIVITY
1634                        }
1635                    }
1636                    _ => WORST_CASE_SELECTIVITY,
1637                },
1638                MirScalarExpr::CallBinary { func, expr1, expr2 } => {
1639                    match func {
1640                        BinaryFunc::Eq(_) => {
1641                            match (index_selectivity(expr1), index_selectivity(expr2)) {
1642                                (Some(isel1), Some(isel2)) => std::cmp::max(isel1, isel2),
1643                                (Some(isel), None) | (None, Some(isel)) => isel,
1644                                (None, None) => WORST_CASE_SELECTIVITY,
1645                            }
1646                        }
1647                        // 1.0 - the Eq case
1648                        BinaryFunc::NotEq(_) => {
1649                            match (index_selectivity(expr1), index_selectivity(expr2)) {
1650                                (Some(isel1), Some(isel2)) => {
1651                                    OrderedFloat(1.0) - std::cmp::max(isel1, isel2)
1652                                }
1653                                (Some(isel), None) | (None, Some(isel)) => OrderedFloat(1.0) - isel,
1654                                (None, None) => OrderedFloat(1.0) - WORST_CASE_SELECTIVITY,
1655                            }
1656                        }
1657                        BinaryFunc::Lt(_)
1658                        | BinaryFunc::Lte(_)
1659                        | BinaryFunc::Gt(_)
1660                        | BinaryFunc::Gte(_) => {
1661                            // TODO(mgree) if we have high/low key values and one of the columns is an index, we can do better
1662                            OrderedFloat(0.33)
1663                        }
1664                        _ => OrderedFloat(1.0), // TOOD(mgree): are there other interesting cases?
1665                    }
1666                }
1667                MirScalarExpr::CallVariadic { func, exprs } => match func {
1668                    VariadicFunc::And(_) => exprs
1669                        .iter()
1670                        .map(|expr| self.predicate(expr, unique_columns))
1671                        .product(),
1672                    VariadicFunc::Or(_) => {
1673                        // TODO(mgree): BETWEEN will get compiled down to an AND of appropriate bounds---we could try to detect it and be clever
1674
1675                        // F(expr1 OR expr2) = F(expr1) + F(expr2) - F(expr1) * F(expr2), but generalized
1676                        let mut exprs = exprs.into_iter();
1677
1678                        let mut expr1;
1679
1680                        if let Some(first) = exprs.next() {
1681                            expr1 = self.predicate(first, unique_columns);
1682                        } else {
1683                            return OrderedFloat(1.0);
1684                        }
1685
1686                        for expr2 in exprs {
1687                            let expr2 = self.predicate(expr2, unique_columns);
1688                            expr1 = expr1 + expr2 - expr1 * expr2;
1689                        }
1690                        expr1
1691                    }
1692                    _ => OrderedFloat(1.0),
1693                },
1694                MirScalarExpr::If { cond: _, then, els } => std::cmp::max(
1695                    self.predicate(then, unique_columns),
1696                    self.predicate(els, unique_columns),
1697                ),
1698            }
1699        }
1700
1701        fn filter(
1702            &self,
1703            predicates: &Vec<MirScalarExpr>,
1704            keys: &Vec<Vec<usize>>,
1705            input: CardinalityEstimate,
1706        ) -> CardinalityEstimate {
1707            // TODO(mgree): should we try to do something for indices built on multiple columns?
1708            let mut unique_columns = BTreeSet::new();
1709            for key in keys {
1710                if key.len() == 1 {
1711                    unique_columns.insert(key[0]);
1712                }
1713            }
1714
1715            let mut estimate = input;
1716            for expr in predicates {
1717                let selectivity = self.predicate(expr, &unique_columns);
1718                debug_assert!(
1719                    OrderedFloat(0.0) <= selectivity && selectivity <= OrderedFloat(1.0),
1720                    "predicate selectivity {selectivity} should be in the range [0,1]"
1721                );
1722                estimate = estimate * selectivity.0;
1723            }
1724
1725            estimate
1726        }
1727
1728        fn join(
1729            &self,
1730            equivalences: &Vec<Vec<MirScalarExpr>>,
1731            _implementation: &JoinImplementation,
1732            unique_columns: BTreeMap<usize, usize>,
1733            mut inputs: Vec<CardinalityEstimate>,
1734        ) -> CardinalityEstimate {
1735            if inputs.is_empty() {
1736                return CardinalityEstimate::from(0.0);
1737            }
1738
1739            for equiv in equivalences {
1740                // those sources which have a unique key
1741                let mut unique_sources = BTreeSet::new();
1742                let mut all_unique = true;
1743
1744                for expr in equiv {
1745                    if let MirScalarExpr::Column(col, _) = expr {
1746                        if let Some(idx) = unique_columns.get(col) {
1747                            unique_sources.insert(*idx);
1748                        } else {
1749                            all_unique = false;
1750                        }
1751                    } else {
1752                        all_unique = false;
1753                    }
1754                }
1755
1756                // no unique columns in this equivalence
1757                if unique_sources.is_empty() {
1758                    continue;
1759                }
1760
1761                // ALL unique columns in this equivalence
1762                if all_unique {
1763                    // these inputs have unique keys for _all_ of the equivalence, so they're a bound on how many rows we'll get from those sources
1764                    // we'll find the leftmost such input and use it to hold the minimum; the other sources we set to 1.0 (so they have no effect)
1765                    let mut sources = unique_sources.iter();
1766
1767                    let lhs_idx = *sources.next().unwrap();
1768                    let mut lhs =
1769                        std::mem::replace(&mut inputs[lhs_idx], CardinalityEstimate::from(1.0));
1770                    for &rhs_idx in sources {
1771                        let rhs =
1772                            std::mem::replace(&mut inputs[rhs_idx], CardinalityEstimate::from(1.0));
1773                        lhs = CardinalityEstimate::min(lhs, rhs);
1774                    }
1775
1776                    inputs[lhs_idx] = lhs;
1777
1778                    // best option! go look at the next equivalence
1779                    continue;
1780                }
1781
1782                // some unique columns in this equivalence
1783                for idx in unique_sources {
1784                    // when joining R and S on R.x = S.x, if R.x is unique and S.x is not, we're bounded above by the cardinality of S
1785                    inputs[idx] = CardinalityEstimate::from(1.0);
1786                }
1787            }
1788
1789            let mut product = CardinalityEstimate::from(1.0);
1790            for input in inputs {
1791                product = product * input;
1792            }
1793            product
1794        }
1795
1796        fn reduce(
1797            &self,
1798            group_key: &Vec<MirScalarExpr>,
1799            expected_group_size: &Option<u64>,
1800            input: CardinalityEstimate,
1801        ) -> CardinalityEstimate {
1802            // TODO(mgree): if no `group_key` is present, we can do way better
1803
1804            if let Some(group_size) = expected_group_size {
1805                input / f64::cast_lossy(*group_size)
1806            } else if group_key.is_empty() {
1807                CardinalityEstimate::from(1.0)
1808            } else {
1809                // in the worst case, every row is its own group
1810                input
1811            }
1812        }
1813
1814        fn topk(
1815            &self,
1816            group_key: &Vec<usize>,
1817            limit: &Option<MirScalarExpr>,
1818            expected_group_size: &Option<u64>,
1819            input: CardinalityEstimate,
1820        ) -> CardinalityEstimate {
1821            // TODO: support simple arithmetic expressions
1822            let k = limit
1823                .as_ref()
1824                .and_then(|l| l.as_literal_int64())
1825                .map_or(1, |l| std::cmp::max(0, l));
1826
1827            if let Some(group_size) = expected_group_size {
1828                input * (f64::cast_lossy(k) / f64::cast_lossy(*group_size))
1829            } else if group_key.is_empty() {
1830                CardinalityEstimate::from(f64::cast_lossy(k))
1831            } else {
1832                // in the worst case, every row is its own group
1833                input.clone()
1834            }
1835        }
1836
1837        fn threshold(&self, input: CardinalityEstimate) -> CardinalityEstimate {
1838            // worst case scaling factor is 1
1839            input.clone()
1840        }
1841    }
1842
1843    impl Analysis for Cardinality {
1844        type Value = CardinalityEstimate;
1845
1846        fn announce_dependencies(builder: &mut crate::analysis::DerivedBuilder) {
1847            builder.require(crate::analysis::Arity);
1848            builder.require(crate::analysis::UniqueKeys);
1849        }
1850
1851        fn derive(
1852            &self,
1853            expr: &MirRelationExpr,
1854            index: usize,
1855            results: &[Self::Value],
1856            depends: &crate::analysis::Derived,
1857        ) -> Self::Value {
1858            use MirRelationExpr::*;
1859
1860            let sizes = depends.as_view().results::<SubtreeSize>();
1861            let arity = depends.as_view().results::<Arity>();
1862            let keys = depends.as_view().results::<UniqueKeys>();
1863
1864            match expr {
1865                Constant { rows, .. } => {
1866                    CardinalityEstimate::from(rows.as_ref().map_or_else(|_| 0, |v| v.len()))
1867                }
1868                Get { id, .. } => match id {
1869                    Id::Local(id) => depends
1870                        .bindings()
1871                        .get(id)
1872                        .and_then(|id| results.get(*id))
1873                        .copied()
1874                        .unwrap_or(CardinalityEstimate::Unknown),
1875                    Id::Global(id) => self
1876                        .stats
1877                        .get(id)
1878                        .copied()
1879                        .map(CardinalityEstimate::from)
1880                        .unwrap_or(CardinalityEstimate::Unknown),
1881                },
1882                Let { .. } | Project { .. } | Map { .. } | ArrangeBy { .. } | Negate { .. } => {
1883                    results[index - 1].clone()
1884                }
1885                LetRec { .. } =>
1886                // TODO(mgree): implement a recurrence-based approach (or at least identify common idioms, e.g. transitive closure)
1887                {
1888                    CardinalityEstimate::Unknown
1889                }
1890                Union { base: _, inputs: _ } => depends
1891                    .children_of_rev(index, expr.children().count())
1892                    .map(|off| results[off].clone())
1893                    .sum(),
1894                FlatMap { func, .. } => {
1895                    let input = results[index - 1];
1896                    self.flat_map(func, input)
1897                }
1898                Filter { predicates, .. } => {
1899                    let input = results[index - 1];
1900                    let keys = depends.results::<UniqueKeys>();
1901                    let keys = &keys[index - 1];
1902                    self.filter(predicates, keys, input)
1903                }
1904                Join {
1905                    equivalences,
1906                    implementation,
1907                    inputs,
1908                    ..
1909                } => {
1910                    let mut input_results = Vec::with_capacity(inputs.len());
1911
1912                    // maps a column to the index in `inputs` that it belongs to
1913                    let mut unique_columns = BTreeMap::new();
1914                    let mut key_offset = 0;
1915
1916                    let mut offset = 1;
1917                    for idx in 0..inputs.len() {
1918                        let input = results[index - offset];
1919                        input_results.push(input);
1920
1921                        let arity = arity[index - offset];
1922                        let keys = &keys[index - offset];
1923                        for key in keys {
1924                            if key.len() == 1 {
1925                                unique_columns.insert(key_offset + key[0], idx);
1926                            }
1927                        }
1928                        key_offset += arity;
1929
1930                        offset += &sizes[index - offset];
1931                    }
1932
1933                    self.join(equivalences, implementation, unique_columns, input_results)
1934                }
1935                Reduce {
1936                    group_key,
1937                    expected_group_size,
1938                    ..
1939                } => {
1940                    let input = results[index - 1];
1941                    self.reduce(group_key, expected_group_size, input)
1942                }
1943                TopK {
1944                    group_key,
1945                    limit,
1946                    expected_group_size,
1947                    ..
1948                } => {
1949                    let input = results[index - 1];
1950                    self.topk(group_key, limit, expected_group_size, input)
1951                }
1952                Threshold { .. } => {
1953                    let input = results[index - 1];
1954                    self.threshold(input)
1955                }
1956            }
1957        }
1958    }
1959
1960    impl std::fmt::Display for CardinalityEstimate {
1961        fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
1962            match self {
1963                CardinalityEstimate::Estimate(OrderedFloat(estimate)) => write!(f, "{estimate}"),
1964                CardinalityEstimate::Unknown => write!(f, "<UNKNOWN>"),
1965            }
1966        }
1967    }
1968}
1969
1970mod common_lattice {
1971    use crate::analysis::Lattice;
1972
1973    pub struct BoolLattice;
1974
1975    impl Lattice<bool> for BoolLattice {
1976        // `true` > `false`.
1977        fn top(&self) -> bool {
1978            true
1979        }
1980        // `false` is the greatest lower bound. `into` changes if it's true and `item` is false.
1981        fn meet_assign(&self, into: &mut bool, item: bool) -> bool {
1982            let changed = *into && !item;
1983            *into = *into && item;
1984            changed
1985        }
1986    }
1987}