pub enum ColumnName {
Column(ColumnNameValue),
UnknownColumn(Option<ColumnNameValue>),
Star,
}Variants§
Column(ColumnNameValue)
UnknownColumn(Option<ColumnNameValue>)
There’s a fallback mechanism that we need to propagate through the expressions/types. We can see this with:
select case when true then 'a' else now()::text end;
-- column named `now`, propagating the function name
-- vs
select case when true then 'a' else 'b' end;
-- column named `case`Star
Implementations§
Source§impl ColumnName
impl ColumnName
pub fn from_target(target: Target) -> Option<(ColumnName, SyntaxNode)>
pub fn inferred_from_target(target: Target) -> Option<(ColumnName, SyntaxNode)>
pub fn to_string(&self) -> Option<String>
Trait Implementations§
Source§impl Clone for ColumnName
impl Clone for ColumnName
Source§fn clone(&self) -> ColumnName
fn clone(&self) -> ColumnName
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ColumnName
impl Debug for ColumnName
Source§impl PartialEq for ColumnName
impl PartialEq for ColumnName
impl StructuralPartialEq for ColumnName
Auto Trait Implementations§
impl !RefUnwindSafe for ColumnName
impl !Send for ColumnName
impl !Sync for ColumnName
impl !UnwindSafe for ColumnName
impl Freeze for ColumnName
impl Unpin for ColumnName
impl UnsafeUnpin for ColumnName
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§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