feat: parse partition syntax in "create table" (#298)

* feat: parse partition syntax in "create table"

* Update src/sql/src/parsers/create_parser.rs

Co-authored-by: luofucong <luofucong@greptime.com>
Co-authored-by: Lei, Huang <6406592+v0y4g3r@users.noreply.github.com>
This commit is contained in:
LFC
2022-10-20 10:43:15 +08:00
committed by GitHub
parent fbea07ea83
commit d5800d0b60
5 changed files with 510 additions and 7 deletions

View File

@@ -8,6 +8,8 @@ edition = "2021"
common-error = { path = "../common/error" }
common-time = { path = "../common/time" }
datatypes = { path = "../datatypes" }
itertools = "0.10"
once_cell = "1.10"
snafu = { version = "0.7", features = ["backtraces"] }
sqlparser = "0.15.0"
table-engine = { path = "../table-engine" }