Files
greptimedb/Cargo.toml
dennis zhuang e78c015fc0 TableEngine and SqlHandler impl (#45)
* Impl TableEngine, bridge to storage

* Impl sql handler to process insert sql

* fix: minor changes and typo

* test: add datanode test

* test: add table-engine test

* fix: code style

* refactor: split out insert mod from sql and minor changes by CR

* refactor: replace with_context with context
2022-06-17 11:36:49 +08:00

22 lines
421 B
TOML

[workspace]
members = [
"src/common/base",
"src/common/error",
"src/common/function",
"src/common/telemetry",
"src/common/query",
"src/common/recordbatch",
"src/cmd",
"src/datanode",
"src/datatypes",
"src/log-store",
"src/logical-plans",
"src/object-store",
"src/query",
"src/sql",
"src/storage",
"src/store-api",
"src/table",
"src/table-engine",
]