build(deps): bump the dependencies group with 5 updates (#896)

This commit is contained in:
houseme
2025-11-20 13:04:24 +08:00
committed by GitHub
parent e14809ee04
commit 18cd9a8b46
3 changed files with 258 additions and 185 deletions
@@ -15,6 +15,7 @@
use async_trait::async_trait;
use datafusion::arrow::datatypes::SchemaRef;
use datafusion::logical_expr::LogicalPlan as DFPlan;
use std::sync::Arc;
use crate::QueryResult;
@@ -31,7 +32,7 @@ pub enum Plan {
impl Plan {
pub fn schema(&self) -> SchemaRef {
match self {
Self::Query(p) => SchemaRef::from(p.df_plan.schema().as_ref().to_owned()),
Self::Query(p) => Arc::new(p.df_plan.schema().as_arrow().clone()),
}
}
}