Skip to content

Commit

Permalink
Simplify datetime conversion
Browse files Browse the repository at this point in the history
  • Loading branch information
tustvold committed Oct 30, 2023
1 parent d9aaa43 commit 4e34c66
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions parquet_derive/src/parquet_field.rs
Original file line number Diff line number Diff line change
Expand Up @@ -427,13 +427,9 @@ impl Field {
quote! { ::chrono::naive::NaiveDateTime::from_timestamp_millis(vals[i]).unwrap() }
}
Some(ThirdPartyType::ChronoNaiveDate) => {
// NaiveDateTime::UNIX_EPOCH.num_days_from_ce() == 719163
quote! {
::chrono::naive::NaiveDate::from_num_days_from_ce_opt(vals[i]
+ ((::chrono::naive::NaiveDate::from_ymd_opt(1970, 1, 1).unwrap()
.signed_duration_since(
::chrono::naive::NaiveDate::from_ymd_opt(0, 12, 31).unwrap()
)
).num_days()) as i32).unwrap()
::chrono::naive::NaiveDate::from_num_days_from_ce_opt(vals[i] + 719163).unwrap()
}
}
Some(ThirdPartyType::Uuid) => {
Expand Down

0 comments on commit 4e34c66

Please sign in to comment.