File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed
arrow/src/compute/kernels Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff 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 ( ) ;
You can’t perform that action at this time.
0 commit comments