mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2026-01-05 21:02:58 +00:00
* refactor/flight-codec: ### Refactor and Enhance Schema and RecordBatch Handling - **Add `datatypes` Dependency**: Updated `Cargo.lock` and `Cargo.toml` to include the `datatypes` dependency. - **Schema Conversion and Error Handling**: - Updated `src/client/src/database.rs` and `src/client/src/region.rs` to handle schema conversion using `Arc` and added error handling for schema conversion. - Enhanced error handling in `src/client/src/error.rs` and `src/common/grpc/src/error.rs` by adding `ConvertSchema` error and removing unused errors. - **FlightMessage and RecordBatch Refactoring**: - Refactored `FlightMessage` enum in `src/common/grpc/src/flight.rs` to use `RecordBatch` instead of `Recordbatch`. - Updated related functions and tests in `src/common/grpc/benches/bench_flight_decoder.rs`, `src/operator/src/bulk_insert.rs`, `src/servers/src/grpc/flight/stream.rs`, and `tests-integration/src/grpc/flight.rs` to align with the new `FlightMessage` structure. * refactor/flight-codec: Remove `ConvertArrowSchema` Error Variant - Removed the `ConvertArrowSchema` error variant from `error.rs`. - Updated the `ErrorExt` implementation to exclude `ConvertArrowSchema`. - Affected file: `src/common/query/src/error.rs`. * fix: cr
53 lines
1.2 KiB
TOML
53 lines
1.2 KiB
TOML
[package]
|
|
name = "client"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[features]
|
|
testing = []
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
api.workspace = true
|
|
arc-swap = "1.6"
|
|
arrow-flight.workspace = true
|
|
async-stream.workspace = true
|
|
async-trait.workspace = true
|
|
base64.workspace = true
|
|
common-catalog.workspace = true
|
|
common-error.workspace = true
|
|
common-grpc.workspace = true
|
|
common-macro.workspace = true
|
|
common-meta.workspace = true
|
|
common-query.workspace = true
|
|
common-recordbatch.workspace = true
|
|
common-telemetry.workspace = true
|
|
datatypes.workspace = true
|
|
enum_dispatch = "0.3"
|
|
futures.workspace = true
|
|
futures-util.workspace = true
|
|
lazy_static.workspace = true
|
|
moka = { workspace = true, features = ["future"] }
|
|
parking_lot.workspace = true
|
|
prometheus.workspace = true
|
|
prost.workspace = true
|
|
query.workspace = true
|
|
rand.workspace = true
|
|
serde_json.workspace = true
|
|
snafu.workspace = true
|
|
substrait.workspace = true
|
|
tokio.workspace = true
|
|
tokio-stream = { workspace = true, features = ["net"] }
|
|
tonic.workspace = true
|
|
|
|
[dev-dependencies]
|
|
common-grpc-expr.workspace = true
|
|
tracing = "0.1"
|
|
|
|
[dev-dependencies.substrait_proto]
|
|
package = "substrait"
|
|
version = "0.37"
|