Skip to content

Commit 2e96437

Browse files
committed
disable due to #1547
1 parent 827cf0e commit 2e96437

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

arrow/src/compute/kernels/filter.rs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1692,6 +1692,9 @@ mod tests {
16921692
}
16931693

16941694
#[test]
1695+
// Fails when validation enabled
1696+
// https://github.com/apache/arrow-rs/issues/1547
1697+
#[cfg(not(feature = "force_validate"))]
16951698
fn test_filter_union_array_sparse() {
16961699
let mut builder = UnionBuilder::new_sparse(3);
16971700
builder.append::<Int32Type>("A", 1).unwrap();
@@ -1703,6 +1706,9 @@ mod tests {
17031706
}
17041707

17051708
#[test]
1709+
// Fails when validation enabled
1710+
// https://github.com/apache/arrow-rs/issues/1547
1711+
#[cfg(not(feature = "force_validate"))]
17061712
fn test_filter_union_array_sparse_with_nulls() {
17071713
let mut builder = UnionBuilder::new_sparse(4);
17081714
builder.append::<Int32Type>("A", 1).unwrap();

0 commit comments

Comments
 (0)