Struct mz_compute_client::plan::AvailableCollections
source · pub struct AvailableCollections {
pub raw: bool,
pub arranged: Vec<(Vec<MirScalarExpr>, BTreeMap<usize, usize>, Vec<usize>)>,
}
Expand description
The forms in which an operator’s output is available;
it can be considered the plan-time equivalent of
render::context::CollectionBundle
.
These forms are either “raw”, representing an unarranged collection, or “arranged”, representing one that has been arranged by some key.
The raw collection, if it exists, may be consumed directly.
The arranged collections are slightly more complicated:
Each key here is attached to a description of how the corresponding
arrangement is permuted to remove value columns
that are redundant with key columns. Thus, the first element in each
tuple of arranged
is the arrangement key; the second is the map of
logical output columns to columns in the key or value of the deduplicated
representation, and the third is a “thinning expression”,
or list of columns to include in the value
when arranging.
For example, assume a 5-column collection is to be arranged by the key
[Column(2), Column(0) + Column(3), Column(1)]
.
Then Column(1)
and Column(2)
in the value are redundant with the key, and
only columns 0, 3, and 4 need to be stored separately.
The thinning expression will then be [0, 3, 4]
.
The permutation represents how to recover the
original values (logically [Column(0), Column(1), Column(2), Column(3), Column(4)]
)
from the key and value of the arrangement, logically
[Column(2), Column(0) + Column(3), Column(1), Column(0), Column(3), Column(4)]
.
Thus, the permutation in this case should be {0: 3, 1: 2, 2: 0, 3: 4, 4: 5}
.
Note that this description, while true at the time of writing, is merely illustrative;
users of this struct should not rely on the exact strategy used for generating
the permutations. As long as clients apply the thinning expression
when creating arrangements, and permute by the hashmap when reading them,
the contract of the function where they are generated (mz_expr::permutation_for_arrangement
)
ensures that the correct values will be read.
Fields§
§raw: bool
Whether the collection exists in unarranged form.
arranged: Vec<(Vec<MirScalarExpr>, BTreeMap<usize, usize>, Vec<usize>)>
The set of arrangements of the collection, along with a column permutation mapping
Implementations§
source§impl AvailableCollections
impl AvailableCollections
sourcepub fn new_arranged(
arranged: Vec<(Vec<MirScalarExpr>, BTreeMap<usize, usize>, Vec<usize>)>
) -> Self
pub fn new_arranged(
arranged: Vec<(Vec<MirScalarExpr>, BTreeMap<usize, usize>, Vec<usize>)>
) -> Self
Represent a collection that is arranged in the specified ways.
sourcepub fn arbitrary_arrangement(
&self
) -> Option<&(Vec<MirScalarExpr>, BTreeMap<usize, usize>, Vec<usize>)>
pub fn arbitrary_arrangement(
&self
) -> Option<&(Vec<MirScalarExpr>, BTreeMap<usize, usize>, Vec<usize>)>
Get some arrangement, if one exists.
Trait Implementations§
source§impl Arbitrary for AvailableCollections
impl Arbitrary for AvailableCollections
§type Parameters = <bool as Arbitrary>::Parameters
type Parameters = <bool as Arbitrary>::Parameters
arbitrary_with
accepts for configuration
of the generated Strategy
. Parameters must implement Default
.§type Strategy = Map<(<bool as Arbitrary>::Strategy, BoxedStrategy<Vec<(Vec<MirScalarExpr, Global>, BTreeMap<usize, usize, Global>, Vec<usize, Global>), Global>>), fn(_: (bool, Vec<(Vec<MirScalarExpr, Global>, BTreeMap<usize, usize, Global>, Vec<usize, Global>), Global>)) -> AvailableCollections>
type Strategy = Map<(<bool as Arbitrary>::Strategy, BoxedStrategy<Vec<(Vec<MirScalarExpr, Global>, BTreeMap<usize, usize, Global>, Vec<usize, Global>), Global>>), fn(_: (bool, Vec<(Vec<MirScalarExpr, Global>, BTreeMap<usize, usize, Global>, Vec<usize, Global>), Global>)) -> AvailableCollections>
Strategy
used to generate values of type Self
.source§fn arbitrary_with(_top: Self::Parameters) -> Self::Strategy
fn arbitrary_with(_top: Self::Parameters) -> Self::Strategy
source§impl Clone for AvailableCollections
impl Clone for AvailableCollections
source§fn clone(&self) -> AvailableCollections
fn clone(&self) -> AvailableCollections
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for AvailableCollections
impl Debug for AvailableCollections
source§impl Default for AvailableCollections
impl Default for AvailableCollections
source§fn default() -> AvailableCollections
fn default() -> AvailableCollections
source§impl<'de> Deserialize<'de> for AvailableCollections
impl<'de> Deserialize<'de> for AvailableCollections
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
source§impl DisplayText<PlanRenderingContext<'_, Plan<Timestamp>>> for AvailableCollections
impl DisplayText<PlanRenderingContext<'_, Plan<Timestamp>>> for AvailableCollections
source§impl PartialEq<AvailableCollections> for AvailableCollections
impl PartialEq<AvailableCollections> for AvailableCollections
source§fn eq(&self, other: &AvailableCollections) -> bool
fn eq(&self, other: &AvailableCollections) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl RustType<ProtoAvailableCollections> for AvailableCollections
impl RustType<ProtoAvailableCollections> for AvailableCollections
source§fn into_proto(&self) -> ProtoAvailableCollections
fn into_proto(&self) -> ProtoAvailableCollections
Self
into a Proto
value.source§fn from_proto(x: ProtoAvailableCollections) -> Result<Self, TryFromProtoError>
fn from_proto(x: ProtoAvailableCollections) -> Result<Self, TryFromProtoError>
source§impl Serialize for AvailableCollections
impl Serialize for AvailableCollections
impl Eq for AvailableCollections
impl StructuralEq for AvailableCollections
impl StructuralPartialEq for AvailableCollections
Auto Trait Implementations§
impl RefUnwindSafe for AvailableCollections
impl Send for AvailableCollections
impl Sync for AvailableCollections
impl Unpin for AvailableCollections
impl UnwindSafe for AvailableCollections
Blanket Implementations§
source§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key
and return true
if they are equal.source§impl<T> FutureExt for T
impl<T> FutureExt for T
source§fn with_context(self, otel_cx: Context) -> WithContext<Self>
fn with_context(self, otel_cx: Context) -> WithContext<Self>
source§fn with_current_context(self) -> WithContext<Self>
fn with_current_context(self) -> WithContext<Self>
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
T
in a tonic::Request
source§impl<T> Pointable for T
impl<T> Pointable for T
source§impl<P, R> ProtoType<R> for Pwhere
R: RustType<P>,
impl<P, R> ProtoType<R> for Pwhere
R: RustType<P>,
source§fn into_rust(self) -> Result<R, TryFromProtoError>
fn into_rust(self) -> Result<R, TryFromProtoError>
RustType::from_proto
.source§fn from_rust(rust: &R) -> P
fn from_rust(rust: &R) -> P
RustType::into_proto
.