chore: remove old substrait dependency (#7724)

This commit is contained in:
fys
2026-02-26 18:37:40 +08:00
committed by GitHub
parent 5eac4f10aa
commit bcd27126d1
4 changed files with 6 additions and 114 deletions

View File

@@ -48,7 +48,3 @@ tonic.workspace = true
[dev-dependencies]
common-grpc-expr.workspace = true
tracing = "0.1"
[dev-dependencies.substrait_proto]
package = "substrait"
version = "0.37"

View File

@@ -22,10 +22,6 @@ promql.workspace = true
prost.workspace = true
snafu.workspace = true
[dependencies.substrait_proto]
package = "substrait"
version = "0.37"
[dev-dependencies]
datatypes.workspace = true
tokio.workspace = true

View File

@@ -21,10 +21,8 @@ use bytes::{Buf, Bytes};
use datafusion::execution::context::SessionState;
pub use datafusion::execution::registry::SerializerRegistry;
/// Re-export the Substrait module of datafusion,
/// note this is a different version of the `substrait_proto` crate
pub use datafusion_substrait::substrait as substrait_proto_df;
pub use datafusion_substrait::{logical_plan as df_logical_plan, variation_const};
pub use substrait_proto;
pub use crate::df_substrait::DFLogicalSubstraitConvertor;
#[async_trait]