Skip to content

Commit

Permalink
Update crates/deltalake-core/src/table/state_arrow.rs
Browse files Browse the repository at this point in the history
Co-authored-by: Will Jones <[email protected]>
  • Loading branch information
aersam and wjones127 authored Nov 13, 2023
1 parent b397a6c commit dd06417
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/deltalake-core/src/table/state_arrow.rs
Original file line number Diff line number Diff line change
Expand Up @@ -176,9 +176,9 @@ impl DeltaTableState {
.field_with_name(name)
.unwrap()
.physical_name();
(physical_name, name)
(physical_name, name.as_str())
})
.collect::<HashMap<&String, &String>>();
.collect::<HashMap<&str, &str>>();

// Append values
for action in self.files() {
Expand Down

0 comments on commit dd06417

Please sign in to comment.