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
It would be nice if we could filter array type
statement ok create table data (c1 int[]) as values ([1, 2, 3]), ([4, 5]), ([4, 5]) query error DataFusion error: Arrow error: Invalid argument error: Invalid comparison operation: List\(Field \{ name: "item", data_type: Int32, nullable: true, dict_id: 0, dict_is_ordered: false, metadata: \{\} \}\) == List\(Field \{ name: "item", data_type: Int32, nullable: true, dict_id: 0, dict_is_ordered: false, metadata: \{\} \}\) select * from data where c1 = [1, 2, 3]; Expect: [1,2,3] query error DataFusion error: Arrow error: Invalid argument error: Invalid comparison operation: List\(Field \{ name: "item", data_type: Int32, nullable: true, dict_id: 0, dict_is_ordered: false, metadata: \{\} \}\) == List\(Field \{ name: "item", data_type: Int32, nullable: true, dict_id: 0, dict_is_ordered: false, metadata: \{\} \}\) select * from data where c1 = [4, 5]; Expect: [4, 5] query error DataFusion error: Arrow error: Invalid argument error: Invalid comparison operation: List\(Field \{ name: "item", data_type: Int32, nullable: true, dict_id: 0, dict_is_ordered: false, metadata: \{\} \}\) == List\(Field \{ name: "item", data_type: Int32, nullable: true, dict_id: 0, dict_is_ordered: false, metadata: \{\} \}\) select * from data where c1 = [1, 4]; Expect:
No response
The text was updated successfully, but these errors were encountered:
I think it should be related to the compare_op function in arrow-rs
compare_op
arrow-rs
Sorry, something went wrong.
List
track #5572
There are many issues blocked by apache/arrow-rs#5426. Maybe I should pick up that challenging task again 😢
Successfully merging a pull request may close this issue.
Is your feature request related to a problem or challenge?
It would be nice if we could filter array type
Describe the solution you'd like
No response
Describe alternatives you've considered
No response
Additional context
No response
The text was updated successfully, but these errors were encountered: