Skip to content

Commit

Permalink
temp workaround for rust-lang/rust#60363
Browse files Browse the repository at this point in the history
  • Loading branch information
alecmocatta committed Oct 15, 2019
1 parent f83e323 commit d221c53
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions amadeus-aws/src/cloudfront.rs
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,7 @@ pub struct CloudfrontRow {
pub fle_encrypted_fields: Option<String>,
}
impl CloudfrontRow {
#[inline(always)]
fn from_line(line: &str) -> Self {
let mut values = line.split('\t');
let date = values.next().unwrap();
Expand Down
1 change: 1 addition & 0 deletions amadeus-parquet/src/internal/record/impls.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1115,6 +1115,7 @@ impl ParquetData for Time {
}
}

#[inline(always)]
fn date_time_from_parquet(date_time: Sum3<Int96, i64, i64>) -> Result<DateTime> {
match date_time {
Sum3::A(date_time) => {
Expand Down

0 comments on commit d221c53

Please sign in to comment.