mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2026-05-23 16:30:39 +00:00
* feat: memtable backed by DataFusion to ease testing * move test utility codes out of src folder * Implement our own MemTable because DataFusion's MemTable does not support limit; and replace the original testing numbers table. * fix: address PR comments * fix: "testutil" -> "test-util" * roll back "NumbersTable" Co-authored-by: luofucong <luofucong@greptime.com>
28 lines
539 B
TOML
28 lines
539 B
TOML
[workspace]
|
|
members = [
|
|
"src/api",
|
|
"src/catalog",
|
|
"src/client",
|
|
"src/common/base",
|
|
"src/common/error",
|
|
"src/common/function",
|
|
"src/common/query",
|
|
"src/common/recordbatch",
|
|
"src/common/runtime",
|
|
"src/common/telemetry",
|
|
"src/common/time",
|
|
"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",
|
|
"test-util",
|
|
]
|