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 Sep 20, 2024
1 parent 44ee03f commit d172257
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
1 change: 0 additions & 1 deletion crates/core/src/delta_datafusion/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1767,7 +1767,6 @@ impl From<Column> for DeltaColumn {

#[cfg(test)]
mod tests {
use arrow::datatypes::DataType;
use arrow_array::StructArray;
use arrow_schema::Schema;
use chrono::{TimeZone, Utc};
Expand Down
1 change: 1 addition & 0 deletions crates/core/src/kernel/scalars.rs
Original file line number Diff line number Diff line change
Expand Up @@ -270,6 +270,7 @@ impl ScalarExt for Scalar {
Self::Binary(val) => Value::String(create_escaped_binary_string(val.as_slice())),
Self::Null(_) => Value::Null,
Self::Struct(_) => unimplemented!(),
Self::Array(_) => unimplemented!(),
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion crates/core/src/writer/stats.rs
Original file line number Diff line number Diff line change
Expand Up @@ -613,7 +613,7 @@ mod tests {
Some($value),
Some($value),
None,
0,
Some(0),
false,
))
};
Expand Down

0 comments on commit d172257

Please sign in to comment.