mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2026-05-31 04:10:38 +00:00
* fix: carry not recordbatch result in FlightData, to allow executing SQLs other than selection in new GRPC interface * Update src/datanode/src/instance/flight/stream.rs Co-authored-by: Jiachun Feng <jiachun_feng@proton.me>
24 lines
586 B
TOML
24 lines
586 B
TOML
[package]
|
|
name = "store-api"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[dependencies]
|
|
async-trait.workspace = true
|
|
bytes = "1.1"
|
|
common-base = { path = "../common/base" }
|
|
common-error = { path = "../common/error" }
|
|
common-query = { path = "../common/query" }
|
|
common-time = { path = "../common/time" }
|
|
datatypes = { path = "../datatypes" }
|
|
derive_builder = "0.11"
|
|
futures.workspace = true
|
|
serde.workspace = true
|
|
snafu.workspace = true
|
|
|
|
[dev-dependencies]
|
|
async-stream.workspace = true
|
|
serde_json = "1.0"
|
|
tokio = { version = "1.0", features = ["full"] }
|