mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2026-01-07 22:02:56 +00:00
* 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
22 lines
421 B
TOML
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",
|
|
]
|