pub struct MapFilterProject {
pub expressions: Vec<ScalarExpr>,
pub predicates: Vec<(usize, ScalarExpr)>,
pub projection: Vec<usize>,
pub input_arity: usize,
}
Expand description
A compound operator that can be applied row-by-row.
In practice, this operator is a sequence of map, filter, and project in arbitrary order,
which can and is stored by reordering the sequence’s
apply order to a map
first, filter
second and project
third order.
input is a row(a sequence of values), which is also being used for store intermediate results,
like map
operator can append new columns to the row according to it’s expressions,
filter
operator decide whether this entire row can even be output by decide whether the row satisfy the predicates,
project
operator decide which columns of the row should be output.
This operator integrates the map, filter, and project operators.
It applies a sequences of map expressions, which are allowed to
refer to previous expressions, interleaved with predicates which
must be satisfied for an output to be produced. If all predicates
evaluate to Value::Boolean(True)
the data at the identified columns are
collected and produced as output in a packed Row
.
This operator is a “builder” and its contents may contain expressions
that are not yet executable. For example, it may contain temporal
expressions in self.expressions
, even though this is not something
we can directly evaluate. The plan creation methods will defensively
ensure that the right thing happens.
Fields§
§expressions: Vec<ScalarExpr>
A sequence of expressions that should be appended to the row.
Many of these expressions may not be produced in the output, and may only be present as common subexpressions.
predicates: Vec<(usize, ScalarExpr)>
Expressions that must evaluate to Datum::True
for the output
row to be produced.
Each entry is prepended with a column identifier indicating the column before which the predicate should first be applied. Most commonly this would be one plus the largest column identifier in the predicate’s referred columns, but it could be larger to implement guarded evaluation of predicates. Put it in another word, the first element of the tuple means the predicates can’t be evaluated until that number of columns is formed.
This list should be sorted by the first field.
projection: Vec<usize>
A sequence of column identifiers whose data form the output row.
input_arity: usize
The expected number of input columns.
This is needed to ensure correct identification of newly formed columns in the output.
Implementations§
Source§impl MapFilterProject
impl MapFilterProject
Sourcepub fn new(input_arity: usize) -> Self
pub fn new(input_arity: usize) -> Self
Create a no-op operator for an input of a supplied arity.
pub fn get_nth_expr(&self, n: usize) -> Option<ScalarExpr>
Sourcepub fn output_arity(&self) -> usize
pub fn output_arity(&self) -> usize
The number of columns expected in the output row.
Sourcepub fn compose(before: Self, after: Self) -> Result<Self, Error>
pub fn compose(before: Self, after: Self) -> Result<Self, Error>
Given two mfps, return an mfp that applies one followed by the other. Note that the arguments are in the opposite order from how function composition is usually written in mathematics.
Sourcepub fn is_identity(&self) -> bool
pub fn is_identity(&self) -> bool
True if the operator describes the identity transformation.
Sourcepub fn project<I>(self, columns: I) -> Result<Self, Error>
pub fn project<I>(self, columns: I) -> Result<Self, Error>
Retain only the indicated columns in the presented order.
i.e. before: self.projection = [1, 2, 0], columns = [1, 0]
flowchart TD
col-0
col-1
col-2
projection --> |0|col-1
projection --> |1|col-2
projection --> |2|col-0
after: self.projection = [2, 1]
flowchart TD
col-0
col-1
col-2
project("project:[1,2,0]")
project
project -->|0| col-1
project -->|1| col-2
project -->|2| col-0
new_project("apply new project:[1,0]")
new_project -->|0| col-2
new_project -->|1| col-1
Sourcepub fn filter<I>(self, predicates: I) -> Result<Self, Error>where
I: IntoIterator<Item = ScalarExpr>,
pub fn filter<I>(self, predicates: I) -> Result<Self, Error>where
I: IntoIterator<Item = ScalarExpr>,
Retain only rows satisfying these predicates.
This method introduces predicates as eagerly as they can be evaluated, which may not be desired for predicates that may cause exceptions. If fine manipulation is required, the predicates can be added manually.
simply added to the end of the predicates list
while paying attention to column references maintained by self.projection
so self.projection = [1, 2, 0], filter = [0]+[1]>0
:
becomes:
flowchart TD
col-0
col-1
col-2
project("first project:[1,2,0]")
project
project -->|0| col-1
project -->|1| col-2
project -->|2| col-0
filter("then filter:[0]+[1]>0")
filter -->|0| col-1
filter --> |1| col-2
Sourcepub fn map<I>(self, expressions: I) -> Result<Self, Error>where
I: IntoIterator<Item = ScalarExpr>,
pub fn map<I>(self, expressions: I) -> Result<Self, Error>where
I: IntoIterator<Item = ScalarExpr>,
Append the result of evaluating expressions to each row.
simply append expressions
to self.expressions
while paying attention to column references maintained by self.projection
hence, before apply map with a previously non-trivial projection would be like: before:
flowchart TD
col-0
col-1
col-2
projection --> |0|col-1
projection --> |1|col-2
projection --> |2|col-0
after apply map:
flowchart TD
col-0
col-1
col-2
project("project:[1,2,0]")
project
project -->|0| col-1
project -->|1| col-2
project -->|2| col-0
map("map:[0]/[1]/[2]")
map -->|0|col-1
map -->|1|col-2
map -->|2|col-0
Sourcepub fn into_map_filter_project(
self,
) -> (Vec<ScalarExpr>, Vec<ScalarExpr>, Vec<usize>)
pub fn into_map_filter_project( self, ) -> (Vec<ScalarExpr>, Vec<ScalarExpr>, Vec<usize>)
Like MapFilterProject::as_map_filter_project
, but consumes self
rather than cloning.
Sourcepub fn as_map_filter_project(
&self,
) -> (Vec<ScalarExpr>, Vec<ScalarExpr>, Vec<usize>)
pub fn as_map_filter_project( &self, ) -> (Vec<ScalarExpr>, Vec<ScalarExpr>, Vec<usize>)
As the arguments to Map
, Filter
, and Project
operators.
In principle, this operator can be implemented as a sequence of more elemental operators, likely less efficiently.
Source§impl MapFilterProject
impl MapFilterProject
Sourcepub fn into_safe(self) -> SafeMfpPlan
pub fn into_safe(self) -> SafeMfpPlan
Convert the MapFilterProject
into a safe evaluation plan. Marking it safe to evaluate.
Sourcepub fn get_old_to_new_mapping(&self) -> BTreeMap<usize, usize>
pub fn get_old_to_new_mapping(&self) -> BTreeMap<usize, usize>
get the mapping of old columns to new columns after the mfp
Sourcepub fn demand(&self) -> BTreeSet<usize>
pub fn demand(&self) -> BTreeSet<usize>
Lists input columns whose values are used in outputs.
It is entirely appropriate to determine the demand of an instance
and then both apply a projection to the subject of the instance and
self.permute
this instance.
Sourcepub fn permute(
&mut self,
shuffle: BTreeMap<usize, usize>,
new_input_arity: usize,
) -> Result<(), Error>
pub fn permute( &mut self, shuffle: BTreeMap<usize, usize>, new_input_arity: usize, ) -> Result<(), Error>
Update input column references, due to an input projection or permutation.
The shuffle
argument remaps expected column identifiers to new locations,
with the expectation that shuffle
describes all input columns, and so the
intermediate results will be able to start at position shuffle.len()
.
The supplied shuffle
may not list columns that are not “demanded” by the
instance, and so we should ensure that self
is optimized to not reference
columns that are not demanded.
Trait Implementations§
Source§impl Clone for MapFilterProject
impl Clone for MapFilterProject
Source§fn clone(&self) -> MapFilterProject
fn clone(&self) -> MapFilterProject
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for MapFilterProject
impl Debug for MapFilterProject
Source§impl Ord for MapFilterProject
impl Ord for MapFilterProject
Source§fn cmp(&self, other: &MapFilterProject) -> Ordering
fn cmp(&self, other: &MapFilterProject) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Source§impl PartialEq for MapFilterProject
impl PartialEq for MapFilterProject
Source§impl PartialOrd for MapFilterProject
impl PartialOrd for MapFilterProject
impl Eq for MapFilterProject
impl StructuralPartialEq for MapFilterProject
Auto Trait Implementations§
impl Freeze for MapFilterProject
impl !RefUnwindSafe for MapFilterProject
impl Send for MapFilterProject
impl Sync for MapFilterProject
impl Unpin for MapFilterProject
impl !UnwindSafe for MapFilterProject
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
§impl<T> Conv for T
impl<T> Conv for T
§impl<T, V> Convert<T> for Vwhere
V: Into<T>,
impl<T, V> Convert<T> for Vwhere
V: Into<T>,
fn convert(value: Self) -> T
fn convert_box(value: Box<Self>) -> Box<T>
fn convert_vec(value: Vec<Self>) -> Vec<T>
fn convert_vec_box(value: Vec<Box<Self>>) -> Vec<Box<T>>
fn convert_matrix(value: Vec<Vec<Self>>) -> Vec<Vec<T>>
fn convert_option(value: Option<Self>) -> Option<T>
fn convert_option_box(value: Option<Box<Self>>) -> Option<Box<T>>
fn convert_option_vec(value: Option<Vec<Self>>) -> Option<Vec<T>>
§impl<Choices> CoproductSubsetter<CNil, HNil> for Choices
impl<Choices> CoproductSubsetter<CNil, HNil> for Choices
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key
and return true
if they are equal.Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key
and return true
if they are equal.§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
§impl<T> FmtForward for T
impl<T> FmtForward for T
§fn fmt_binary(self) -> FmtBinary<Self>where
Self: Binary,
fn fmt_binary(self) -> FmtBinary<Self>where
Self: Binary,
self
to use its Binary
implementation when Debug
-formatted.§fn fmt_display(self) -> FmtDisplay<Self>where
Self: Display,
fn fmt_display(self) -> FmtDisplay<Self>where
Self: Display,
self
to use its Display
implementation when
Debug
-formatted.§fn fmt_lower_exp(self) -> FmtLowerExp<Self>where
Self: LowerExp,
fn fmt_lower_exp(self) -> FmtLowerExp<Self>where
Self: LowerExp,
self
to use its LowerExp
implementation when
Debug
-formatted.§fn fmt_lower_hex(self) -> FmtLowerHex<Self>where
Self: LowerHex,
fn fmt_lower_hex(self) -> FmtLowerHex<Self>where
Self: LowerHex,
self
to use its LowerHex
implementation when
Debug
-formatted.§fn fmt_octal(self) -> FmtOctal<Self>where
Self: Octal,
fn fmt_octal(self) -> FmtOctal<Self>where
Self: Octal,
self
to use its Octal
implementation when Debug
-formatted.§fn fmt_pointer(self) -> FmtPointer<Self>where
Self: Pointer,
fn fmt_pointer(self) -> FmtPointer<Self>where
Self: Pointer,
self
to use its Pointer
implementation when
Debug
-formatted.§fn fmt_upper_exp(self) -> FmtUpperExp<Self>where
Self: UpperExp,
fn fmt_upper_exp(self) -> FmtUpperExp<Self>where
Self: UpperExp,
self
to use its UpperExp
implementation when
Debug
-formatted.§fn fmt_upper_hex(self) -> FmtUpperHex<Self>where
Self: UpperHex,
fn fmt_upper_hex(self) -> FmtUpperHex<Self>where
Self: UpperHex,
self
to use its UpperHex
implementation when
Debug
-formatted.§fn fmt_list(self) -> FmtList<Self>where
&'a Self: for<'a> IntoIterator,
fn fmt_list(self) -> FmtList<Self>where
&'a Self: for<'a> IntoIterator,
§impl<T> FutureExt for T
impl<T> FutureExt for T
§fn with_context(self, otel_cx: Context) -> WithContext<Self>
fn with_context(self, otel_cx: Context) -> WithContext<Self>
§fn with_current_context(self) -> WithContext<Self>
fn with_current_context(self) -> WithContext<Self>
§impl<T> FutureExt for T
impl<T> FutureExt for T
§fn with_context(self, otel_cx: Context) -> WithContext<Self>
fn with_context(self, otel_cx: Context) -> WithContext<Self>
§fn with_current_context(self) -> WithContext<Self>
fn with_current_context(self) -> WithContext<Self>
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§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> 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
§impl<T, U, I> LiftInto<U, I> for Twhere
U: LiftFrom<T, I>,
impl<T, U, I> LiftInto<U, I> for Twhere
U: LiftFrom<T, I>,
§impl<T> Pipe for Twhere
T: ?Sized,
impl<T> Pipe for Twhere
T: ?Sized,
§fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> Rwhere
Self: Sized,
fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> Rwhere
Self: Sized,
§fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> Rwhere
R: 'a,
fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> Rwhere
R: 'a,
self
and passes that borrow into the pipe function. Read more§fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> Rwhere
R: 'a,
fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> Rwhere
R: 'a,
self
and passes that borrow into the pipe function. Read more§fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> R
fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> R
§fn pipe_borrow_mut<'a, B, R>(
&'a mut self,
func: impl FnOnce(&'a mut B) -> R,
) -> R
fn pipe_borrow_mut<'a, B, R>( &'a mut self, func: impl FnOnce(&'a mut B) -> R, ) -> R
§fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> R
fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> R
self
, then passes self.as_ref()
into the pipe function.§fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> R
fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> R
self
, then passes self.as_mut()
into the pipe
function.§fn pipe_deref<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> R
fn pipe_deref<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> R
self
, then passes self.deref()
into the pipe function.§impl<T> Pointable for T
impl<T> Pointable for T
§impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
§impl<Source> Sculptor<HNil, HNil> for Source
impl<Source> Sculptor<HNil, HNil> for Source
§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
self
from the equivalent element of its
superset. Read more§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
self
is actually part of its subset T
(and can be converted to it).§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
self.to_subset
but without any property checks. Always succeeds.§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
self
to the equivalent element of its superset.§impl<T> Tap for T
impl<T> Tap for T
§fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Self
fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Self
Borrow<B>
of a value. Read more§fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Self
fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Self
BorrowMut<B>
of a value. Read more§fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Self
fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Self
AsRef<R>
view of a value. Read more§fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Self
fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Self
AsMut<R>
view of a value. Read more§fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Self
fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Self
Deref::Target
of a value. Read more§fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Self
fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Self
Deref::Target
of a value. Read more§fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self
fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self
.tap()
only in debug builds, and is erased in release builds.§fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self
fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self
.tap_mut()
only in debug builds, and is erased in release
builds.§fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Self
fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Self
.tap_borrow()
only in debug builds, and is erased in release
builds.§fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Self
fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Self
.tap_borrow_mut()
only in debug builds, and is erased in release
builds.§fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Self
fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Self
.tap_ref()
only in debug builds, and is erased in release
builds.§fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Self
fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Self
.tap_ref_mut()
only in debug builds, and is erased in release
builds.§fn tap_deref_dbg<T>(self, func: impl FnOnce(&T)) -> Self
fn tap_deref_dbg<T>(self, func: impl FnOnce(&T)) -> Self
.tap_deref()
only in debug builds, and is erased in release
builds.