pub enum Dialect {
Show 13 variants
Generic,
MySQL,
PostgreSQL,
Hive,
SQLite,
Snowflake,
Redshift,
MsSQL,
ClickHouse,
BigQuery,
Ansi,
DuckDB,
Databricks,
}Expand description
This is the SQL dialect used by DataFusion’s parser.
This mirrors sqlparser::dialect::Dialect
trait in order to offer an easier API and avoid adding the sqlparser dependency
Variants§
Generic
MySQL
PostgreSQL
Hive
SQLite
Snowflake
Redshift
MsSQL
ClickHouse
BigQuery
Ansi
DuckDB
Databricks
Trait Implementations§
Source§impl ConfigField for Dialect
impl ConfigField for Dialect
impl Copy for Dialect
impl Eq for Dialect
impl StructuralPartialEq for Dialect
Auto Trait Implementations§
impl Freeze for Dialect
impl RefUnwindSafe for Dialect
impl Send for Dialect
impl Sync for Dialect
impl Unpin for Dialect
impl UnsafeUnpin for Dialect
impl UnwindSafe for Dialect
Blanket Implementations§
impl<T> Allocation for T
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<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.