Skip to content

Commit

Permalink
Fix for date partition
Browse files Browse the repository at this point in the history
  • Loading branch information
ChewingGlass committed Jun 28, 2023
1 parent e5dd8e2 commit 0760efc
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions rust/src/operations/transaction/state.rs
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ impl DeltaTableState {
// Dictionary encoding boolean types does not yield benefits
// https://github.com/apache/arrow-datafusion/pull/5545#issuecomment-1526917997
DataType::Boolean => field.data_type().clone(),
DataType::Date32 => field.data_type().clone(),
_ => wrap_partition_type_in_dict(field.data_type().clone()),
}
} else {
Expand Down

0 comments on commit 0760efc

Please sign in to comment.