Struct datafusion::sql::sqlparser::ast::WildcardAdditionalOptions
source · pub struct WildcardAdditionalOptions {
pub opt_exclude: Option<ExcludeSelectItem>,
pub opt_except: Option<ExceptSelectItem>,
pub opt_rename: Option<RenameSelectItem>,
pub opt_replace: Option<ReplaceSelectItem>,
}
Expand description
Additional options for wildcards, e.g. Snowflake EXCLUDE
/RENAME
and Bigquery EXCEPT
.
Fields§
§opt_exclude: Option<ExcludeSelectItem>
[EXCLUDE...]
.
opt_except: Option<ExceptSelectItem>
[EXCEPT...]
.
Clickhouse syntax: https://clickhouse.com/docs/en/sql-reference/statements/select#except
opt_rename: Option<RenameSelectItem>
[RENAME ...]
.
opt_replace: Option<ReplaceSelectItem>
[REPLACE]
BigQuery syntax: https://cloud.google.com/bigquery/docs/reference/standard-sql/query-syntax#select_replace
Clickhouse syntax: https://clickhouse.com/docs/en/sql-reference/statements/select#replace
Trait Implementations§
source§impl Clone for WildcardAdditionalOptions
impl Clone for WildcardAdditionalOptions
source§fn clone(&self) -> WildcardAdditionalOptions
fn clone(&self) -> WildcardAdditionalOptions
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 WildcardAdditionalOptions
impl Debug for WildcardAdditionalOptions
source§impl Default for WildcardAdditionalOptions
impl Default for WildcardAdditionalOptions
source§fn default() -> WildcardAdditionalOptions
fn default() -> WildcardAdditionalOptions
Returns the “default value” for a type. Read more
source§impl Display for WildcardAdditionalOptions
impl Display for WildcardAdditionalOptions
source§impl Hash for WildcardAdditionalOptions
impl Hash for WildcardAdditionalOptions
source§impl Ord for WildcardAdditionalOptions
impl Ord for WildcardAdditionalOptions
source§fn cmp(&self, other: &WildcardAdditionalOptions) -> Ordering
fn cmp(&self, other: &WildcardAdditionalOptions) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq for WildcardAdditionalOptions
impl PartialEq for WildcardAdditionalOptions
source§fn eq(&self, other: &WildcardAdditionalOptions) -> bool
fn eq(&self, other: &WildcardAdditionalOptions) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd for WildcardAdditionalOptions
impl PartialOrd for WildcardAdditionalOptions
source§fn partial_cmp(&self, other: &WildcardAdditionalOptions) -> Option<Ordering>
fn partial_cmp(&self, other: &WildcardAdditionalOptions) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moresource§impl Visit for WildcardAdditionalOptions
impl Visit for WildcardAdditionalOptions
source§impl VisitMut for WildcardAdditionalOptions
impl VisitMut for WildcardAdditionalOptions
fn visit<V>(&mut self, visitor: &mut V) -> ControlFlow<<V as VisitorMut>::Break>where
V: VisitorMut,
impl Eq for WildcardAdditionalOptions
impl StructuralPartialEq for WildcardAdditionalOptions
Auto Trait Implementations§
impl Freeze for WildcardAdditionalOptions
impl RefUnwindSafe for WildcardAdditionalOptions
impl Send for WildcardAdditionalOptions
impl Sync for WildcardAdditionalOptions
impl Unpin for WildcardAdditionalOptions
impl UnwindSafe for WildcardAdditionalOptions
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> 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> 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