Use littleendian arrow files for projection_should_work#1573
Merged
Dandandan merged 1 commit intoapache:masterfrom Apr 16, 2022
Merged
Use littleendian arrow files for projection_should_work#1573Dandandan merged 1 commit intoapache:masterfrom
projection_should_work#1573Dandandan merged 1 commit intoapache:masterfrom
Conversation
viirya
commented
Apr 16, 2022
| let paths = vec![ | ||
| "generated_interval", | ||
| "generated_datetime", | ||
| // "generated_map", Err: Last offset 872415232 of Utf8 is larger than values length 52 (https://github.com/apache/arrow-rs/issues/859) |
Member
Author
There was a problem hiding this comment.
This is also due to bigendian offsets. So I uncomment it too.
Codecov Report
@@ Coverage Diff @@
## master #1573 +/- ##
==========================================
- Coverage 82.87% 82.87% -0.01%
==========================================
Files 193 193
Lines 55304 55304
==========================================
- Hits 45835 45834 -1
- Misses 9469 9470 +1
Continue to review full report at Codecov.
|
tustvold
approved these changes
Apr 16, 2022
Dandandan
approved these changes
Apr 16, 2022
Contributor
|
Thanks for fixing, this was an oversight of me! |
Member
Author
|
Thanks @tustvold @Dandandan ! |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Which issue does this PR close?
Closes #1548.
Rationale for this change
Currently by enabling
force_validate, the testprojection_should_workfails.It is because the arrow files used in the test is bigendian, but currently the IPC reader doesn't translate big endian offsets (#859). As that's a known issue, I change the test to use littleendian arrow files, and add a comment there to explain the reason.
What changes are included in this PR?
Are there any user-facing changes?