-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Add CI check for full validation mode #1546
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
5c44344
19dc05a
2a472d7
1fb4b14
827cf0e
2e96437
58e3c28
a3a73e0
947c56b
a6b84a5
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -1692,6 +1692,9 @@ mod tests { | |
| } | ||
|
|
||
| #[test] | ||
| // Fails when validation enabled | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 😢
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. at least we know there is a problem. So it is progress 🤷 we'll get it fixed
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. going to fix it at #1567 |
||
| // https://github.com/apache/arrow-rs/issues/1547 | ||
| #[cfg(not(feature = "force_validate"))] | ||
| fn test_filter_union_array_sparse() { | ||
| let mut builder = UnionBuilder::new_sparse(3); | ||
| builder.append::<Int32Type>("A", 1).unwrap(); | ||
|
|
@@ -1703,6 +1706,9 @@ mod tests { | |
| } | ||
|
|
||
| #[test] | ||
| // Fails when validation enabled | ||
| // https://github.com/apache/arrow-rs/issues/1547 | ||
| #[cfg(not(feature = "force_validate"))] | ||
| fn test_filter_union_array_sparse_with_nulls() { | ||
| let mut builder = UnionBuilder::new_sparse(4); | ||
| builder.append::<Int32Type>("A", 1).unwrap(); | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Here is the validation call
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
❤️