Expand description
EXPLAIN
support for various intermediate representations.
Ideally, the EXPLAIN
support for each IR should be in the crate where this
IR is defined. However, we need to resort to an Explainable
newtype
struct in order to provide alternate mz_repr::explain::Explain
implementations for some structs (see the mir
) module for details.
Modules§
EXPLAIN
support forFastPathPlan
.- hir 🔒
EXPLAIN
support for HIR structures. - insights 🔒Derive insights for plans.
- lir 🔒
EXPLAIN
support for LIR structures. - mir 🔒
EXPLAIN
support for MIR structures. - Tracing utilities for explainable plans.
Structs§
- Newtype struct for wrapping types that should implement the
mz_repr::explain::Explain
trait.
Functions§
- Convenience method to derive an
ExplainContext
from theindex_imports
in the givenplan
and all other input parameters, wrap theplan
in anExplainable
, and finally compute and return theexplain(...)
result. - Convenience method to explain a single plan.