Uh oh!
There was an error while loading. Please reload this page.
ARROW-1278: [Integration] Adding integration tests for fixed_size_list - #4309
ARROW-1278: [Integration] Adding integration tests for fixed_size_list#4309bkietz wants to merge 3 commits into
Conversation
Codecov Report
@@ Coverage Diff @@## master #4309 +/- ##
==========================================
+ Coverage 88.54% 88.97% +0.42%
==========================================
Files 796 704 -92 Lines 103206 94725 -8481 Branches 1253 0 -1253 ==========================================
- Hits 91388 84277 -7111 + Misses 11573 10448 -1125 + Partials 245 0 -245
Continue to review full report at Codecov.
|
bkietz
commented
May 15, 2019
waiting for #4316 to be merged |
wesm
commented
May 16, 2019
Is it expected for the integration tests to pass (there is support in Java for reading these?)? |
bkietz
commented
May 17, 2019
It seems like there is support: https://github.com/apache/arrow/blob/master/java/vector/src/test/java/org/apache/arrow/vector/ipc/TestArrowFile.java#L623 I'd need to spend more time figuring out exactly which java code is exercised by |
wesm
commented
May 17, 2019
I just poked around the Java codebase. It seems it may work by accident, but it is not tested |
emkornfield
commented
Jun 2, 2019
@bkietz what are the next steps here, do you need help with something on the Java side? |
e287bd8 to
ae45d3fComparebkietz
commented
Jun 11, 2019
@emkornfield I have investigated the fixed size list tests. They're spare but present so I think we should merge this and add a JIRA to test fixed size list more thoroughly in Java. |
ae45d3f to
5806637Compareemkornfield
commented
Jun 12, 2019
@bkietz sounds good, can you rebase? |
5806637 to
e7ed001Comparebkietz
commented
Jun 12, 2019
@emkornfield rebased and green except for a coredump in test_csv (I don't think that was me) |
| g++ \ | ||
| gcc \ | ||
| git \ | ||
| ninja-build \ |
There was a problem hiding this comment.
@emkornfield ninja is installed in ci/conda_env_cpp.yml so isn't this unused?
emkornfield
commented
Jun 13, 2019
@bkietz one small question about a change to docker file. Otherwise LGTM |
emkornfield
commented
Jun 13, 2019
@bkietz potentially not an expert on docker stuff, so I'd prefer cleanup as a separate PR |
bkietz
commented
Jun 13, 2019
@emkornfield reverted and green |
emkornfield
commented
Jun 14, 2019
+1 LGTM, please file a JIRA for the follow-up work. |
codecov-commenter
commented
Feb 5, 2025
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@## master #4309 +/- ##
==========================================
+ Coverage 88.54% 88.97% +0.42%
==========================================
Files 796 704 -92 Lines 103206 94725 -8481 Branches 1253 0 -1253 ==========================================
- Hits 91388 84277 -7111 + Misses 11573 10448 -1125 + Partials 245 0 -245 ☔ View full report in Codecov by Sentry. |
Adds integration tests for fixed_size_list Also adds support for fixed_size_list to RecordBatchSerializer, which was omitted in apache#4278 Author: Benjamin Kietzman <bengilgit@gmail.com> Closesapache#4309 from bkietz/1278-integration-tests-for-fixed-size-list and squashes the following commits: 8b356f3 <Benjamin Kietzman> revert removal of ninja-build from dockerfile e7ed001 <Benjamin Kietzman> fix flake8 error 8ab4efc <Benjamin Kietzman> Adding integration tests for fixed_size_list
Adds integration tests for fixed_size_list
Also adds support for fixed_size_list to RecordBatchSerializer, which was omitted in #4278