feat: impl create table sql parser (#115)

* feat: impl create table sql parser

* feat: checking time index columns size

* refactor: move TS_INDEX to statement

* fix: address CR problems

* refactor: remove parser_error! macro
This commit is contained in:
dennis zhuang
2022-07-29 11:03:36 +08:00
committed by GitHub
parent 03e965954a
commit df577ad7f8
12 changed files with 284 additions and 8 deletions

View File

@@ -9,3 +9,4 @@ edition = "2021"
common-error = { path = "../common/error" }
snafu = { version = "0.7", features = ["backtraces"] }
sqlparser = "0.15.0"
table-engine = { path = "../table-engine" }