Skip to content

Commit

Permalink
Lints
Browse files Browse the repository at this point in the history
  • Loading branch information
Jay Chia committed Aug 8, 2023
1 parent 9f13bd7 commit 657986c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/daft-core/src/schema.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use std::{
collections::{BTreeMap, HashSet},
collections::HashSet,
fmt::{Display, Formatter, Result},
sync::Arc,
};
Expand Down Expand Up @@ -91,7 +91,7 @@ impl Schema {
let arrow_fields = arrow_fields?;
Ok(arrow2::datatypes::Schema {
fields: arrow_fields,
metadata: BTreeMap::new(),
metadata: Default::default(),
})
}

Expand Down
1 change: 0 additions & 1 deletion src/daft-parquet/src/file.rs
Original file line number Diff line number Diff line change
Expand Up @@ -354,7 +354,6 @@ impl ParquetFileReader {

let (send, recv) = tokio::sync::oneshot::channel();
rayon::spawn(move || {
// TODO(jay): Fix arrow2 to handle the pytype=Int96/dtype=Timestamp(ms/us) cases
let arr_iter = column_iter_to_arrays(
decompressed_iters,
ptypes.iter().collect(),
Expand Down

0 comments on commit 657986c

Please sign in to comment.