mirror of
https://github.com/apache/datafusion-sqlparser-rs.git
synced 2025-12-10 22:38:53 +00:00
Merge branch 'master' into join-support
This commit is contained in:
commit
ab423bc9dc
7 changed files with 34 additions and 10 deletions
|
|
@ -13,6 +13,7 @@ impl Dialect for GenericSqlDialect {
|
|||
REAL, DOUBLE, PRECISION, INT, INTEGER, SMALLINT, BIGINT, NUMERIC, DECIMAL, DEC,
|
||||
BOOLEAN, DATE, TIME, TIMESTAMP, CASE, WHEN, THEN, ELSE, END, JOIN, LEFT, RIGHT, FULL,
|
||||
CROSS, OUTER, INNER, NATURAL, ON, USING,
|
||||
BOOLEAN, DATE, TIME, TIMESTAMP, CASE, WHEN, THEN, ELSE, END, LIKE,
|
||||
];
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -3,7 +3,6 @@ mod generic_sql;
|
|||
pub mod keywords;
|
||||
mod postgresql;
|
||||
|
||||
|
||||
pub use self::ansi_sql::AnsiSqlDialect;
|
||||
pub use self::generic_sql::GenericSqlDialect;
|
||||
pub use self::postgresql::PostgreSqlDialect;
|
||||
|
|
@ -15,4 +14,4 @@ pub trait Dialect {
|
|||
fn is_identifier_start(&self, ch: char) -> bool;
|
||||
/// Determine if a character is a valid identifier character
|
||||
fn is_identifier_part(&self, ch: char) -> bool;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue