Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
ion-elgreco committed Mar 28, 2024
1 parent ad652af commit 3f8d32c
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions crates/core/src/delta_datafusion/expr.rs
Original file line number Diff line number Diff line change
Expand Up @@ -369,12 +369,7 @@ impl<'a> fmt::Display for ScalarValueFormat<'a> {
"{}",
NaiveDateTime::from_timestamp_micros(*e).unwrap().and_utc()
)?,
None => write!(
f,
"{}",
NaiveDateTime::from_timestamp_micros(*e)
.unwrap()
)?,
None => write!(f, "{}", NaiveDateTime::from_timestamp_micros(*e).unwrap())?,
},
None => write!(f, "NULL")?,
},
Expand Down

0 comments on commit 3f8d32c

Please sign in to comment.