Skip to content
This repository has been archived by the owner on Feb 18, 2024. It is now read-only.

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
b41sh committed Jan 8, 2024
1 parent 4e99b57 commit 1cc03f3
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
1 change: 0 additions & 1 deletion src/io/orc/read/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -356,4 +356,3 @@ pub fn deserialize(data_type: DataType, column: &Column) -> Result<Box<dyn Array
dt => Err(Error::nyi(format!("Deserializing {dt:?} from ORC"))),
}
}

2 changes: 2 additions & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@
#![allow(clippy::type_complexity)]
#![cfg_attr(docsrs, feature(doc_cfg))]
#![cfg_attr(feature = "simd", feature(portable_simd))]
#![cfg_attr(feature = "simd", feature(build_hasher_simple_hash_one))]
#![cfg_attr(feature = "compute", feature(build_hasher_simple_hash_one))]
#![cfg_attr(feature = "nightly_build", feature(build_hasher_simple_hash_one))]

#[macro_use]
Expand Down
9 changes: 6 additions & 3 deletions tests/it/io/parquet/read.rs
Original file line number Diff line number Diff line change
Expand Up @@ -213,12 +213,14 @@ fn v1_utf8_required_dict() -> Result<()> {
test_pyarrow_integration("string", 1, "basic", true, true, None)
}

#[test]
// TODO: NotYetImplemented Rle encoded
#[warn(dead_code)]
fn v2_boolean_nullable() -> Result<()> {
test_pyarrow_integration("bool", 2, "basic", false, false, None)
}

#[test]
// TODO: NotYetImplemented Rle encoded
#[warn(dead_code)]
fn v2_boolean_required() -> Result<()> {
test_pyarrow_integration("bool", 2, "basic", false, true, None)
}
Expand Down Expand Up @@ -295,7 +297,8 @@ fn v1_nested_i16_required_dict() -> Result<()> {
)
}

#[test]
// TODO: NotYetImplemented Rle encoded
#[warn(dead_code)]
fn v2_nested_bool() -> Result<()> {
test_pyarrow_integration("list_bool", 2, "nested", false, false, None)
}
Expand Down

0 comments on commit 1cc03f3

Please sign in to comment.