pub enum TableFunctionName<'a> {
Unnest(Span),
GenerateSeries(Span),
StringToTable(Span),
Other(QualifiedName<'a>),
}Expand description
The name of a table-valued function in a FROM clause.
Well-known set-returning functions get their own variant so consumers can
match on them without string comparison. Any other function name falls into
Other.
Variants§
Unnest(Span)
UNNEST(array, ...) — expand one or more arrays into a set of rows
GenerateSeries(Span)
GENERATE_SERIES(start, stop [, step]) — generate a series of values
StringToTable(Span)
STRING_TO_TABLE(str, delimiter) — split a string into rows
Other(QualifiedName<'a>)
Any other set-returning function (user-defined or less common builtins)
Trait Implementations§
Source§impl<'a> Clone for TableFunctionName<'a>
impl<'a> Clone for TableFunctionName<'a>
Source§fn clone(&self) -> TableFunctionName<'a>
fn clone(&self) -> TableFunctionName<'a>
Returns a duplicate 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<'a> Debug for TableFunctionName<'a>
impl<'a> Debug for TableFunctionName<'a>
Auto Trait Implementations§
impl<'a> Freeze for TableFunctionName<'a>
impl<'a> RefUnwindSafe for TableFunctionName<'a>
impl<'a> Send for TableFunctionName<'a>
impl<'a> Sync for TableFunctionName<'a>
impl<'a> Unpin for TableFunctionName<'a>
impl<'a> UnsafeUnpin for TableFunctionName<'a>
impl<'a> UnwindSafe for TableFunctionName<'a>
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