pub struct ScanOperator {
pub index_metas: Vec<IndexMetaRef>,
pub table_name: Arc<String>,
pub columns: Vec<ScalarExpression>,
pub limit: (Option<usize>, Option<usize>),
pub index_by: Option<(IndexMetaRef, Vec<ConstantBinary>)>,
}
Fields§
§index_metas: Vec<IndexMetaRef>
§table_name: Arc<String>
§columns: Vec<ScalarExpression>
§limit: (Option<usize>, Option<usize>)
§index_by: Option<(IndexMetaRef, Vec<ConstantBinary>)>
Implementations§
source§impl ScanOperator
impl ScanOperator
pub fn build( table_name: Arc<String>, table_catalog: &TableCatalog ) -> LogicalPlan
Trait Implementations§
source§impl Clone for ScanOperator
impl Clone for ScanOperator
source§fn clone(&self) -> ScanOperator
fn clone(&self) -> ScanOperator
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for ScanOperator
impl Debug for ScanOperator
source§impl Hash for ScanOperator
impl Hash for ScanOperator
source§impl PartialEq for ScanOperator
impl PartialEq for ScanOperator
source§fn eq(&self, other: &ScanOperator) -> bool
fn eq(&self, other: &ScanOperator) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for ScanOperator
impl StructuralEq for ScanOperator
impl StructuralPartialEq for ScanOperator
Auto Trait Implementations§
impl RefUnwindSafe for ScanOperator
impl Send for ScanOperator
impl Sync for ScanOperator
impl Unpin for ScanOperator
impl UnwindSafe for ScanOperator
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
Mutably borrows from an owned value. Read more
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
Compare self to
key
and return true
if they are equal.