Skip to content

Commit

Permalink
fix: address build failures with the newer kernel
Browse files Browse the repository at this point in the history
  • Loading branch information
rtyler committed Nov 21, 2024
1 parent 7565e9d commit b266703
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion crates/core/src/delta_datafusion/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1777,7 +1777,7 @@ mod tests {
use crate::operations::write::SchemaMode;
use crate::writer::test_utils::get_delta_schema;
use arrow::array::StructArray;
use arrow::datatypes::{DataType, Field, Schema};
use arrow::datatypes::{Field, Schema};
use chrono::{TimeZone, Utc};
use datafusion::assert_batches_sorted_eq;
use datafusion::datasource::physical_plan::ParquetExec;
Expand Down
2 changes: 1 addition & 1 deletion crates/core/src/kernel/scalars.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//! Auxiliary methods for dealing with kernel scalars
use std::{cmp::Ordering, fmt::Debug};
use std::cmp::Ordering;

use arrow_array::Array;
use arrow_schema::TimeUnit;
Expand Down

0 comments on commit b266703

Please sign in to comment.