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

@@ -49,7 +49,7 @@ where
todo!("Currently not supported")
}
Statement::Query(qb) => self.query_to_plan(qb),
Statement::Insert(_) => unreachable!(),
Statement::Create(_) | Statement::Insert(_) => unreachable!(),
}
}
}