Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
  • Loading branch information
alamb authored May 20, 2024
1 parent 5b91f2c commit bd7437c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion datafusion/core/tests/parquet/arrow_statistics.rs
Original file line number Diff line number Diff line change
Expand Up @@ -577,6 +577,8 @@ async fn test_timestamp_diff_rg_sizes() {
}

// date with different row group sizes
// Bug expect `Date32Array` but returns Int32Array
// https://github.com/apache/datafusion/issues/10587
#[tokio::test]
async fn test_dates_32_diff_rg_sizes() {
let row_per_group = 13;
Expand All @@ -603,8 +605,9 @@ async fn test_dates_32_diff_rg_sizes() {
.run("date32");
}

// BUG: same as above. Expect to return Int64Array (for Date64Array) but returns Int32Array
// BUG: same as above. Expect to return Date64Array but returns Int32Array
// test date with different row group sizes
// https://github.com/apache/datafusion/issues/10587
#[ignore]
#[tokio::test]
async fn test_dates_64_diff_rg_sizes() {
Expand Down

0 comments on commit bd7437c

Please sign in to comment.