Skip to content

Commit

Permalink
Revert "Remove arrow dev dependency"
Browse files Browse the repository at this point in the history
This reverts commit 3eb0985.
  • Loading branch information
jcsherin committed Oct 12, 2024
1 parent 4fe2135 commit 7dbb7e8
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
2 changes: 2 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,8 @@ datafusion-physical-plan = { path = "datafusion/physical-plan", version = "42.0.
datafusion-proto = { path = "datafusion/proto", version = "42.0.0" }
datafusion-proto-common = { path = "datafusion/proto-common", version = "42.0.0" }
datafusion-sql = { path = "datafusion/sql", version = "42.0.0" }
datafusion-sqllogictest = { path = "datafusion/sqllogictest", version = "42.0.0" }
datafusion-substrait = { path = "datafusion/substrait", version = "42.0.0" }
doc-comment = "0.3"
env_logger = "0.11"
futures = "0.3"
Expand Down
3 changes: 3 additions & 0 deletions datafusion/functions-window/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -45,3 +45,6 @@ datafusion-physical-expr = { workspace = true }
datafusion-physical-expr-common = { workspace = true }
log = { workspace = true }
paste = "1.0.15"

[dev-dependencies]
arrow = { workspace = true }
2 changes: 1 addition & 1 deletion datafusion/functions-window/src/lead_lag.rs
Original file line number Diff line number Diff line change
Expand Up @@ -477,7 +477,7 @@ impl PartitionEvaluator for WindowShiftEvaluator {
#[cfg(test)]
mod tests {
use super::*;
use datafusion_common::arrow::array::*;
use arrow::array::*;
use datafusion_common::cast::as_int32_array;
use datafusion_physical_expr::expressions::{Column, Literal};
use datafusion_physical_expr_common::physical_expr::PhysicalExpr;
Expand Down

0 comments on commit 7dbb7e8

Please sign in to comment.