We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
compare_op
GenericBinaryView
Is your feature request related to a problem or challenge? Please describe what you are trying to do.
Currently the following test case(s) will fail:
#[test] fn test_utf8_view_eq() { let values = vec![Some("small"), None, Some("larger than 12 bytes string")]; let left = StringViewArray::from_iter(values.iter()); let right = StringViewArray::from_iter(values.iter()); crate::cmp::eq(&left, &right).unwrap(); }
Because we haven't implemented the code to compare two view types in compare_op https://github.com/XiangpengHao/arrow-rs/blob/master/arrow-ord/src/cmp.rs#L227
I believe this is required to unblock apache/datafusion#10919
Describe the solution you'd like
The solution should be fairly simple.
Describe alternatives you've considered
Additional context
The text was updated successfully, but these errors were encountered:
take
Sorry, something went wrong.
Seems arrow don't have the fancy take command as DataFusion's https://datafusion.apache.org/contributor-guide/index.html#finding-and-creating-issues-to-work-on
Can you assign me @alamb ?
=
<>
StringView
StringViewArray
BinaryViewArray
label_issue.py automatically added labels {'arrow'} from #5900
label_issue.py
XiangpengHao
Successfully merging a pull request may close this issue.
Is your feature request related to a problem or challenge? Please describe what you are trying to do.
Currently the following test case(s) will fail:
Because we haven't implemented the code to compare two view types in
compare_op
https://github.com/XiangpengHao/arrow-rs/blob/master/arrow-ord/src/cmp.rs#L227I believe this is required to unblock apache/datafusion#10919
Describe the solution you'd like
The solution should be fairly simple.
Describe alternatives you've considered
Additional context
The text was updated successfully, but these errors were encountered: