Enum datafusion_python::datafusion_sql::sqlparser::ast::Subscript
source · pub enum Subscript {
Index {
index: Expr,
},
Slice {
lower_bound: Option<Expr>,
upper_bound: Option<Expr>,
stride: Option<Expr>,
},
}Expand description
The contents inside the [ and ] in a subscript expression.
Variants§
Index
Accesses the element of the array at the given index.
Slice
Accesses a slice of an array on PostgreSQL, e.g.
=> select (array[1,2,3,4,5,6])[2:5];
-----------
{2,3,4,5}
The lower and/or upper bound can be omitted to slice from the start or end of the array respectively.
See https://www.postgresql.org/docs/current/arrays.html#ARRAYS-ACCESSING.
Also supports an optional “stride” as the last element (this is not supported by postgres), e.g.
=> select (array[1,2,3,4,5,6])[1:6:2];
-----------
{1,3,5}
Trait Implementations§
source§impl Ord for Subscript
impl Ord for Subscript
source§impl PartialOrd for Subscript
impl PartialOrd for Subscript
source§impl VisitMut for Subscript
impl VisitMut for Subscript
fn visit<V>(&mut self, visitor: &mut V) -> ControlFlow<<V as VisitorMut>::Break>where
V: VisitorMut,
impl Eq for Subscript
impl StructuralPartialEq for Subscript
Auto Trait Implementations§
impl Freeze for Subscript
impl RefUnwindSafe for Subscript
impl Send for Subscript
impl Sync for Subscript
impl Unpin for Subscript
impl UnwindSafe for Subscript
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<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit)source§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
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.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> 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>
Converts
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>
Converts
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 more