1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
// Copyright Materialize, Inc. and contributors. All rights reserved.
//
// Use of this software is governed by the Business Source License
// included in the LICENSE file.
//
// As of the Change Date specified in that file, in accordance with
// the Business Source License, use of this software will be governed
// by the Apache License, Version 2.0.

//! Identifies common relation subexpressions and places them behind `Let` bindings.
//!
//! All structurally equivalent expressions, defined recursively as having structurally
//! equivalent inputs, and identical parameters, will be placed behind `Let` bindings.
//! The resulting expressions likely have an excess of `Let` expressions, and therefore
//! we automatically run the `NormalizeLets` transformation to remove those that are not necessary.

use mz_expr::MirRelationExpr;

use crate::normalize_lets::NormalizeLets;
use crate::TransformCtx;

use super::anf::ANF;

/// Identifies common relation subexpressions and places them behind `Let` bindings.
#[derive(Debug)]
pub struct RelationCSE {
    anf: ANF,
    normalize_lets: NormalizeLets,
}

impl RelationCSE {
    /// Constructs a new [`RelationCSE`] instance.
    ///
    /// Also communicates its argument to let normalization.
    pub fn new(inline_mfp: bool) -> RelationCSE {
        RelationCSE {
            anf: ANF::default(),
            normalize_lets: NormalizeLets::new(inline_mfp),
        }
    }
}

impl crate::Transform for RelationCSE {
    #[mz_ore::instrument(
        target = "optimizer",
        level = "debug",
        fields(path.segment = "relation_cse")
    )]
    fn transform(
        &self,
        rel: &mut MirRelationExpr,
        _ctx: &mut TransformCtx,
    ) -> Result<(), crate::TransformError> {
        // Run ANF.
        self.anf.transform_without_trace(rel)?;

        // Run NormalizeLets.
        self.normalize_lets.transform_without_trace(rel)?;

        // Record the result and return.
        mz_repr::explain::trace_plan(&*rel);
        Ok(())
    }
}