mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2026-01-08 14:22:58 +00:00
* feat: migrate file engine from table to reigon Signed-off-by: Zhenchi <zhongzc_arch@outlook.com> * Update src/file-engine/src/engine.rs Co-authored-by: Ruihang Xia <waynestxia@gmail.com> * feat: specify ts index for file engine Signed-off-by: Zhenchi <zhongzc_arch@outlook.com> * feat: handle time index for external table Signed-off-by: Zhenchi <zhongzc_arch@outlook.com> * fix: some integration testsg Signed-off-by: Zhenchi <zhongzc_arch@outlook.com> * feat: add file schema and table schema compatibility Signed-off-by: Zhenchi <zhongzc_arch@outlook.com> * feat: compatible file schema to region schema Signed-off-by: Zhenchi <zhongzc_arch@outlook.com> * feat: add error msg Signed-off-by: Zhenchi <zhongzc_arch@outlook.com> * fix: simplify close Signed-off-by: Zhenchi <zhongzc_arch@outlook.com> * fix: implement set_writable Signed-off-by: Zhenchi <zhongzc_arch@outlook.com> * fix: tests-integration compilation Signed-off-by: Zhenchi <zhongzc_arch@outlook.com> * fix: address comments Signed-off-by: Zhenchi <zhongzc_arch@outlook.com> --------- Signed-off-by: Zhenchi <zhongzc_arch@outlook.com> Co-authored-by: Ruihang Xia <waynestxia@gmail.com> Co-authored-by: zhongzc <zhongzc@zhongzcs-MacBook-Pro.local>
79 lines
2.2 KiB
TOML
79 lines
2.2 KiB
TOML
[package]
|
|
name = "tests-integration"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[features]
|
|
dashboard = []
|
|
|
|
[dependencies]
|
|
api = { workspace = true }
|
|
async-trait = "0.1"
|
|
auth.workspace = true
|
|
axum = "0.6"
|
|
axum-test-helper = { git = "https://github.com/sunng87/axum-test-helper.git", branch = "patch-1" }
|
|
catalog = { workspace = true }
|
|
chrono.workspace = true
|
|
client = { workspace = true, features = ["testing"] }
|
|
common-base = { workspace = true }
|
|
common-catalog = { workspace = true }
|
|
common-config = { workspace = true }
|
|
common-error = { workspace = true }
|
|
common-grpc = { workspace = true }
|
|
common-meta = { workspace = true, features = ["testing"] }
|
|
common-procedure = { workspace = true }
|
|
common-query = { workspace = true }
|
|
common-recordbatch = { workspace = true }
|
|
common-runtime = { workspace = true }
|
|
common-telemetry = { workspace = true }
|
|
common-test-util = { workspace = true }
|
|
datanode = { workspace = true }
|
|
datatypes = { workspace = true }
|
|
dotenv = "0.15"
|
|
frontend = { workspace = true, features = ["testing"] }
|
|
futures.workspace = true
|
|
meta-client = { workspace = true }
|
|
meta-srv = { workspace = true, features = ["mock"] }
|
|
mito = { workspace = true, features = ["test"] }
|
|
object-store = { workspace = true }
|
|
once_cell.workspace = true
|
|
operator = { workspace = true }
|
|
query = { workspace = true }
|
|
rand.workspace = true
|
|
rstest = "0.17"
|
|
rstest_reuse = "0.5"
|
|
secrecy = "0.8"
|
|
serde.workspace = true
|
|
serde_json = "1.0"
|
|
servers = { workspace = true, features = ["testing"] }
|
|
session = { workspace = true }
|
|
snafu.workspace = true
|
|
sql = { workspace = true }
|
|
sqlx = { version = "0.6", features = [
|
|
"runtime-tokio-rustls",
|
|
"mysql",
|
|
"postgres",
|
|
"chrono",
|
|
] }
|
|
substrait = { workspace = true }
|
|
table = { workspace = true }
|
|
tempfile.workspace = true
|
|
tokio.workspace = true
|
|
tonic.workspace = true
|
|
tower = "0.4"
|
|
uuid.workspace = true
|
|
|
|
[dev-dependencies]
|
|
datafusion-expr.workspace = true
|
|
datafusion.workspace = true
|
|
itertools.workspace = true
|
|
opentelemetry-proto.workspace = true
|
|
partition = { workspace = true }
|
|
paste.workspace = true
|
|
prost.workspace = true
|
|
script = { workspace = true }
|
|
session = { workspace = true, features = ["testing"] }
|
|
store-api = { workspace = true }
|
|
tokio-postgres = "0.7"
|