mirror of
https://github.com/apache/datafusion-sqlparser-rs.git
synced 2025-08-16 20:20:15 +00:00
Move the keywords
module (#352)
* Move the keywords mod from dialect mod into the root of library Signed-off-by: koushiro <koushiro.cqx@gmail.com> * re-export keywords from dialect for backwards compatiblity Signed-off-by: koushiro <koushiro.cqx@gmail.com>
This commit is contained in:
parent
3dd89ac44d
commit
c9f8a44b55
6 changed files with 20 additions and 19 deletions
|
@ -31,9 +31,9 @@ use core::str::Chars;
|
|||
#[cfg(feature = "serde")]
|
||||
use serde::{Deserialize, Serialize};
|
||||
|
||||
use crate::dialect::keywords::{Keyword, ALL_KEYWORDS, ALL_KEYWORDS_INDEX};
|
||||
use crate::dialect::Dialect;
|
||||
use crate::dialect::SnowflakeDialect;
|
||||
use crate::keywords::{Keyword, ALL_KEYWORDS, ALL_KEYWORDS_INDEX};
|
||||
|
||||
/// SQL Token enumeration
|
||||
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue