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 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156
// 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.
//! Transform that pushes down the information that a collection will be subjected to a `Distinct` on specific columns.
use mz_expr::MirRelationExpr;
use crate::analysis::{DerivedView, NonNegative};
use crate::{TransformCtx, TransformError};
/// Pushes down the information that a collection will be subjected to a `Distinct` on specific columns.
///
/// This intends to recognize idiomatic stacks of `UNION` from SQL, which look like `Distinct` over `Union`, potentially
/// over other `Distinct` expressions. It is only able to see patterns of `DISTINCT UNION DISTINCT, ..` and other operators
/// in between will prevent the necessary insight to remove the second `DISTINCT`.
///
/// There are other potential optimizations, for example fusing multiple reads of the same source, where distinctness may
/// mean they could be a single read (with additional requirements).
#[derive(Debug, Default)]
pub struct WillDistinct;
impl crate::Transform for WillDistinct {
#[mz_ore::instrument(
target = "optimizer"
level = "trace",
fields(path.segment = "will_distinct")
)]
fn transform(
&self,
relation: &mut MirRelationExpr,
ctx: &mut TransformCtx,
) -> Result<(), TransformError> {
// Perform bottom-up equivalence class analysis.
use crate::analysis::DerivedBuilder;
let mut builder = DerivedBuilder::new(ctx.features);
builder.require(NonNegative);
let derived = builder.visit(relation);
let derived = derived.as_view();
self.apply(relation, derived);
mz_repr::explain::trace_plan(&*relation);
Ok(())
}
}
impl WillDistinct {
fn apply(&self, expr: &mut MirRelationExpr, derived: DerivedView) {
// Maintain a todo list of triples of 1. expression, 2. child analysis results, and 3. a "will distinct" bit.
// The "will distinct" bit says that a subsequent operator will make the specific multiplicities of each record
// irrelevant, and the expression only needs to present the correct *multiset* of record, with any non-negative
// cardinality allowed.
let mut todo = vec![(expr, derived, false)];
while let Some((expr, derived, distinct_by)) = todo.pop() {
// If we find a `Distinct` expression in the shadow of another `Distinct` that will apply to its key columns,
// we can remove this `Distinct` operator as the distinctness will be enforced by the other expression.
if let (
MirRelationExpr::Reduce {
input,
group_key,
aggregates,
..
},
true,
) = (&mut *expr, distinct_by)
{
if aggregates.is_empty() {
// We can remove the `Distinct`, but we must install a `Map` and a `Project` to implement that
// aspect of the operator. We do this by hand so that we can still descend down `input` and
// continue to remove shadowed `Distinct` operators.
let arity = input.arity();
*expr = MirRelationExpr::Project {
outputs: (arity..arity + group_key.len()).collect::<Vec<_>>(),
input: Box::new(MirRelationExpr::Map {
scalars: group_key.clone(),
input: Box::new(input.take_dangerous()),
}),
};
// We are certain to have a specific pattern of AST nodes, which we need to push through so that
// we can continue recursively.
if let MirRelationExpr::Project { input, .. } = expr {
// `input` is a `Map` node, but it has a single input like the `Distinct` it came from.
// Although it reads a bit weird, this lines up the child of the distinct with its derived
// analysis results.
todo.extend(
input
.children_mut()
.rev()
.zip(derived.children_rev())
.map(|(x, y)| (x, y, true)),
);
}
} else {
todo.extend(
expr.children_mut()
.rev()
.zip(derived.children_rev())
.map(|(x, y)| (x, y, false)),
);
}
} else {
match (expr, distinct_by) {
(
MirRelationExpr::Reduce {
input, aggregates, ..
},
_,
) => {
if aggregates.is_empty() {
todo.push((input, derived.last_child(), true));
} else {
todo.push((input, derived.last_child(), false))
}
}
// If all inputs to the union are non-negative, any distinct enforced above the expression can be
// communicated on to each input.
(MirRelationExpr::Union { base, inputs }, will_distinct) => {
if derived
.children_rev()
.all(|v| *v.value::<NonNegative>().unwrap())
{
let children_rev = inputs.iter_mut().rev().chain(Some(&mut **base));
todo.extend(
children_rev
.zip(derived.children_rev())
.map(|(x, y)| (x, y, will_distinct)),
);
} else {
let children_rev = inputs.iter_mut().rev().chain(Some(&mut **base));
todo.extend(
children_rev
.zip(derived.children_rev())
.map(|(x, y)| (x, y, false)),
);
}
}
(x, _) => {
todo.extend(
x.children_mut()
.rev()
.zip(derived.children_rev())
.map(|(x, y)| (x, y, false)),
);
}
}
}
}
}
}