mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2026-01-10 15:22:56 +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>
21 lines
689 B
TOML
21 lines
689 B
TOML
[package]
|
|
name = "test-util"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies.arrow]
|
|
package = "arrow2"
|
|
version="0.10"
|
|
features = ["io_csv", "io_json", "io_parquet", "io_parquet_compression", "io_ipc", "ahash", "compute", "serde_types"]
|
|
|
|
[dependencies]
|
|
async-trait = "0.1"
|
|
common-query = { path = "../src/common/query" }
|
|
common-recordbatch = {path = "../src/common/recordbatch" }
|
|
datafusion = { git = "https://github.com/apache/arrow-datafusion.git" , branch = "arrow2", features = ["simd"]}
|
|
datatypes = {path = "../src/datatypes" }
|
|
futures = "0.3"
|
|
snafu = { version = "0.7", features = ["backtraces"] }
|
|
table = { path = "../src/table" }
|
|
tokio = { version = "1.20", features = ["full"] }
|