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

Commit

Permalink
Bumped parquet2 (#494)
Browse files Browse the repository at this point in the history
  • Loading branch information
jorgecarleitao authored Oct 7, 2021
1 parent 29b6667 commit 8c41d05
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ futures = { version = "0.3", optional = true }
# for faster hashing
ahash = { version = "0.7", optional = true }

parquet2 = { version = "0.5", optional = true, default_features = false, features = ["stream"] }
parquet2 = { version = "0.5.2", optional = true, default_features = false, features = ["stream"] }

avro-rs = { version = "0.13", optional = true, default_features = false }

Expand Down
2 changes: 1 addition & 1 deletion src/io/parquet/read/statistics/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ pub fn deserialize_statistics(stats: &dyn ParquetStatistics) -> Result<Box<dyn S
DataType::Float64,
))))
}
PhysicalType::FixedLenByteArray(_) =>{
PhysicalType::FixedLenByteArray(_) => {
let stats = stats.as_any().downcast_ref().unwrap();
fixlen::statistics_from_fix_len(stats, stats.descriptor.type_())
}
Expand Down
2 changes: 0 additions & 2 deletions tests/it/io/parquet/read.rs
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,6 @@ fn v1_decimal_26_nullable() -> Result<()> {
test_pyarrow_integration(9, 1, "basic", false, false)
}


#[test]
fn v1_decimal_26_required() -> Result<()> {
test_pyarrow_integration(8, 1, "basic", false, true)
Expand Down Expand Up @@ -288,7 +287,6 @@ fn v2_decimal_26_nullable() -> Result<()> {
test_pyarrow_integration(9, 2, "basic", false, false)
}


#[test]
fn v2_decimal_26_required() -> Result<()> {
test_pyarrow_integration(8, 2, "basic", false, true)
Expand Down

0 comments on commit 8c41d05

Please sign in to comment.