7
7
// the Business Source License, use of this software will be governed
8
8
// by the Apache License, Version 2.0.
9
9
10
- //! Optimizer implementation for `CREATE VIEW` statements.
10
+ //! An Optimizer that
11
+ //! 1. Optimistically calls `optimize_mir_constant`.
12
+ //! 2. Then, if we haven't arrived at a constant, it calls `optimize_mir_local`, i.e., the
13
+ //! logical optimizer.
14
+ //!
15
+ //! This is used for `CREATE VIEW` statements and in various other situations where no physical
16
+ //! optimization is needed, such as for `INSERT` statements.
11
17
12
18
use std:: time:: Instant ;
13
19
@@ -18,7 +24,10 @@ use mz_transform::dataflow::DataflowMetainfo;
18
24
use mz_transform:: typecheck:: { empty_context, SharedContext as TypecheckContext } ;
19
25
use mz_transform:: TransformCtx ;
20
26
21
- use crate :: optimize:: { optimize_mir_local, trace_plan, Optimize , OptimizerConfig , OptimizerError } ;
27
+ use crate :: optimize:: {
28
+ optimize_mir_constant, optimize_mir_local, trace_plan, Optimize , OptimizerConfig ,
29
+ OptimizerError ,
30
+ } ;
22
31
23
32
pub struct Optimizer {
24
33
/// A typechecking context to use throughout the optimizer pipeline.
@@ -52,13 +61,24 @@ impl Optimize<HirRelationExpr> for Optimizer {
52
61
trace_plan ! ( at: "raw" , & expr) ;
53
62
54
63
// HIR ⇒ MIR lowering and decorrelation
55
- let expr = expr. lower ( & self . config , self . metrics . as_ref ( ) ) ?;
64
+ let mut expr = expr. lower ( & self . config , self . metrics . as_ref ( ) ) ?;
56
65
57
- // MIR ⇒ MIR optimization (local)
58
66
let mut df_meta = DataflowMetainfo :: default ( ) ;
59
67
let mut transform_ctx =
60
68
TransformCtx :: local ( & self . config . features , & self . typecheck_ctx , & mut df_meta) ;
61
- let expr = optimize_mir_local ( expr, & mut transform_ctx) ?;
69
+
70
+ // First, we run a very simple optimizer pipeline, which only folds constants. This takes
71
+ // care of constant INSERTs. (This optimizer is also used for INSERTs, not just VIEWs.)
72
+ expr = optimize_mir_constant ( expr, & mut transform_ctx) ?;
73
+
74
+ // MIR ⇒ MIR optimization (local)
75
+ let expr = if expr. as_const ( ) . is_some ( ) {
76
+ // No need to optimize further, because we already have a constant.
77
+ OptimizedMirRelationExpr ( expr)
78
+ } else {
79
+ // Call the real optimization.
80
+ optimize_mir_local ( expr, & mut transform_ctx) ?
81
+ } ;
62
82
63
83
if let Some ( metrics) = & self . metrics {
64
84
metrics. observe_e2e_optimization_time ( "view" , time. elapsed ( ) ) ;
0 commit comments