Files
greptimedb/Cargo.toml
dennis zhuang 3a2f794f6c feat: query engine impl on datafusion (#10)
* feat: query engine impl on datafusion

* feat: adds physical_optimizer, physical_planner and executor

* feat: impl adpaters between datafuion and greptime query engine core APIs.

* feat: impl PhysicalPlanAdapter and ExecutionPlanAdapter

* feat: rename table datafusion mod to adapter

* fix: clippy warning

* fix: conflicts with develop branch

* feat: add database mod

* fix: CR comment

* fix: by CR comments

* fix: conflicts with develop branch

* fix: by CR comments
2022-04-26 15:17:32 +08:00

15 lines
263 B
TOML

[workspace]
members = [
"src/common/base",
"src/common/query",
"src/common/recordbatch",
"src/datanode",
"src/datatypes",
"src/log-store",
"src/logical-plans",
"src/object-store",
"src/query",
"src/sql",
"src/table",
]