feat: Add sql parser definition and trivial SHOW DATABASE implementation (#8)

* feat: Add SQL parser definition and SHOW DATABASE implementation

* chores: Eliminate clippy warnings and errors.

* chores: remove Gt prefix in some structs; rename some mod; remove print(s) in unit tests; refactor crate layout;
feat: wrap sqlparser error;

* chores: reorder cargo dependency

* chores: fix code style

* chores: add #[cfg(test)] to unit tests

* style: fix test mod style
This commit is contained in:
Lei, Huang
2022-04-25 17:01:55 +08:00
committed by GitHub
parent ee6263ab9e
commit cb74f1ac34
12 changed files with 314 additions and 6 deletions

View File

@@ -1,4 +1,4 @@
mod executor;
mod logical_optimizer;
mod physical_optimizer;
mod physical_planner;
pub mod executor;
pub mod logical_optimizer;
pub mod physical_optimizer;
pub mod physical_planner;