Skip to content

Commit

Permalink
datafusion 33
Browse files Browse the repository at this point in the history
  • Loading branch information
Blajda committed Nov 17, 2023
1 parent 6ee54c4 commit 5032040
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,12 @@ arrow-select = { version = "48.0.1" }
parquet = { version = "48.0.1" }

# datafusion
datafusion = { git = "https://github.com/apache/arrow-datafusion.git", rev="33.0.0-rc2" }
datafusion-expr = { git = "https://github.com/apache/arrow-datafusion.git", rev="33.0.0-rc2" }
datafusion-common = { git = "https://github.com/apache/arrow-datafusion.git", rev="33.0.0-rc2" }
datafusion-proto = { git = "https://github.com/apache/arrow-datafusion.git", rev="33.0.0-rc2" }
datafusion-sql = { git = "https://github.com/apache/arrow-datafusion.git", rev="33.0.0-rc2" }
datafusion-physical-expr = { git = "https://github.com/apache/arrow-datafusion.git", rev="33.0.0-rc2" }
datafusion = { version = "33.0.0" }
datafusion-expr = { version = "33.0.0" }
datafusion-common = { version = "33.0.0" }
datafusion-proto = { version = "33.0.0" }
datafusion-sql = { version = "33.0.0" }
datafusion-physical-expr = { version = "33.0.0" }


# serde
Expand Down
2 changes: 1 addition & 1 deletion crates/deltalake-sql/src/planner.rs
Original file line number Diff line number Diff line change
Expand Up @@ -92,10 +92,10 @@ mod tests {
use arrow_schema::{DataType, Field, Schema};
use datafusion_common::config::ConfigOptions;
use datafusion_common::DataFusionError;
use datafusion_common::Result as DataFusionResult;
use datafusion_expr::logical_plan::builder::LogicalTableSource;
use datafusion_expr::{AggregateUDF, ScalarUDF, TableSource};
use datafusion_sql::TableReference;
use datafusion_common::Result as DataFusionResult;

use crate::parser::DeltaParser;

Expand Down

0 comments on commit 5032040

Please sign in to comment.