Type Alias mz_sql::plan::lowering::CteMap

source ·
type CteMap = BTreeMap<LocalId, CteDesc>;
Expand description

Map with the CTEs currently in scope.

Aliased Type§

struct CteMap {
    root: Option<NodeRef<Owned, LocalId, CteDesc, LeafOrInternal>>,
    length: usize,
    pub(super) alloc: ManuallyDrop<Global>,
    _marker: PhantomData<Box<(LocalId, CteDesc)>>,
}

Fields§

§root: Option<NodeRef<Owned, LocalId, CteDesc, LeafOrInternal>>§length: usize§alloc: ManuallyDrop<Global>§_marker: PhantomData<Box<(LocalId, CteDesc)>>