pub enum TableProviderFilterPushDown {
Unsupported,
Inexact,
Exact,
}
Expand description
Indicates whether and how a filter expression can be handled by a TableProvider for table scans.
Variants§
Unsupported
The expression cannot be used by the provider.
Inexact
The expression can be used to help minimise the data retrieved, but the provider cannot guarantee that all returned tuples satisfy the filter. The Filter plan node containing this expression will be preserved.
Exact
The provider guarantees that all returned data satisfies this filter expression. The Filter plan node containing this expression will be removed.
Trait Implementations§
source§impl Clone for TableProviderFilterPushDown
impl Clone for TableProviderFilterPushDown
source§fn clone(&self) -> TableProviderFilterPushDown
fn clone(&self) -> TableProviderFilterPushDown
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 TableProviderFilterPushDown
impl Debug for TableProviderFilterPushDown
source§impl PartialEq<TableProviderFilterPushDown> for TableProviderFilterPushDown
impl PartialEq<TableProviderFilterPushDown> for TableProviderFilterPushDown
source§fn eq(&self, other: &TableProviderFilterPushDown) -> bool
fn eq(&self, other: &TableProviderFilterPushDown) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for TableProviderFilterPushDown
impl StructuralEq for TableProviderFilterPushDown
impl StructuralPartialEq for TableProviderFilterPushDown
Auto Trait Implementations§
impl RefUnwindSafe for TableProviderFilterPushDown
impl Send for TableProviderFilterPushDown
impl Sync for TableProviderFilterPushDown
impl Unpin for TableProviderFilterPushDown
impl UnwindSafe for TableProviderFilterPushDown
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
§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,
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§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,
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.