mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2026-01-07 13:52:59 +00:00
* chore: refactor dir for local catalog manager * refactor: CatalogProvider returns Result * refactor: SchemaProvider returns Result * feat: add kv operations to remote catalog * chore: refactor some code * feat: impl catalog initialization * feat: add register table and register system table function * refactor: add table_info method for Table trait * chore: add some tests * chore: add register schema test * chore: fix build issue after rebase onto develop * refactor: mock to separate file * build: failed to compile * fix: use a container struct to bridge KvBackend and Accessor trait * feat: upgrade opendal to 0.17 * test: add more tests * chore: add catalog name and schema name to table info * chore: add catalog name and schema name to table info * chore: rebase onto develop * refactor: common-catalog crate * refactor: remove remote catalog related files * fix: compilation * feat: add table version to TableKey * feat: add node id to TableValue * fix: some CR comments * chore: change async fn create_expr_to_request to sync * fix: add backtrace to errors * fix: code style * fix: CatalogManager::table also requires both catalog_name and schema_name * chore: merge develop
35 lines
707 B
TOML
35 lines
707 B
TOML
[workspace]
|
|
members = [
|
|
"src/api",
|
|
"src/catalog",
|
|
"src/client",
|
|
"src/cmd",
|
|
"src/common/base",
|
|
"src/common/catalog",
|
|
"src/common/error",
|
|
"src/common/function",
|
|
"src/common/function-macro",
|
|
"src/common/grpc",
|
|
"src/common/query",
|
|
"src/common/recordbatch",
|
|
"src/common/runtime",
|
|
"src/common/substrait",
|
|
"src/common/telemetry",
|
|
"src/common/time",
|
|
"src/datanode",
|
|
"src/datatypes",
|
|
"src/frontend",
|
|
"src/log-store",
|
|
"src/meta-client",
|
|
"src/meta-srv",
|
|
"src/object-store",
|
|
"src/query",
|
|
"src/script",
|
|
"src/servers",
|
|
"src/sql",
|
|
"src/storage",
|
|
"src/store-api",
|
|
"src/table",
|
|
"src/table-engine",
|
|
]
|