Improve the create statement parser that uses create statements from pg database dump

Added PostgreSQL style casting
This commit is contained in:
Jovansonlee Cesar 2018-09-24 03:34:40 +08:00
parent 7d27abdfb4
commit 2007995938
6 changed files with 392 additions and 81 deletions

View file

@ -35,6 +35,9 @@
//! println!("AST: {:?}", ast);
//! ```
#[macro_use]
extern crate log;
pub mod dialect;
pub mod sqlast;
pub mod sqlparser;