You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by li...@apache.org on 2022/06/01 20:54:51 UTC

[arrow] branch master updated (5611f2bd0d -> e866789fc8)

This is an automated email from the ASF dual-hosted git repository.

lidavidm pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/arrow.git


    from 5611f2bd0d ARROW-16704: [JS] Handle case where `tableFromIPC` input is an async `RecordBatchReader` (#13278)
     add e866789fc8 ARROW-16005: [Java] Fix ArrayConsumer when using ArrowVectorIterator (#12692)

No new revisions were added by this update.

Summary of changes:
 .../arrow/adapter/jdbc/ArrowVectorIterator.java    | 26 ++++---
 .../arrow/adapter/jdbc/consumer/ArrayConsumer.java | 13 +++-
 .../adapter/jdbc/AbstractJdbcToArrowTest.java      | 39 +++++++---
 .../arrow/adapter/jdbc/JdbcToArrowTestHelper.java  | 40 +++++++++++
 .../java/org/apache/arrow/adapter/jdbc/Table.java  |  9 +++
 .../adapter/jdbc/h2/JdbcToArrowDataTypesTest.java  | 20 +++++-
 .../arrow/adapter/jdbc/h2/JdbcToArrowNullTest.java | 20 +++++-
 .../arrow/adapter/jdbc/h2/JdbcToArrowTest.java     | 31 ++++++--
 .../jdbc/h2/JdbcToArrowVectorIteratorTest.java     | 82 ++++++++++++++++++----
 .../test/resources/h2/test1_all_datatypes_h2.yml   | 27 +++----
 .../resources/h2/test1_all_datatypes_null_h2.yml   | 19 ++---
 .../test1_all_datatypes_selected_null_rows_h2.yml  | 22 +++---
 .../jdbc/src/test/resources/h2/test1_bigint_h2.yml |  2 +-
 .../jdbc/src/test/resources/h2/test1_binary_h2.yml |  2 +-
 .../jdbc/src/test/resources/h2/test1_bit_h2.yml    |  2 +-
 .../jdbc/src/test/resources/h2/test1_blob_h2.yml   |  2 +-
 .../jdbc/src/test/resources/h2/test1_bool_h2.yml   |  2 +-
 .../jdbc/src/test/resources/h2/test1_char_h2.yml   |  2 +-
 .../src/test/resources/h2/test1_charset_ch_h2.yml  |  2 +-
 .../src/test/resources/h2/test1_charset_h2.yml     |  2 +-
 .../src/test/resources/h2/test1_charset_jp_h2.yml  |  2 +-
 .../src/test/resources/h2/test1_charset_kr_h2.yml  |  2 +-
 .../jdbc/src/test/resources/h2/test1_clob_h2.yml   |  2 +-
 .../jdbc/src/test/resources/h2/test1_date_h2.yml   |  2 +-
 .../src/test/resources/h2/test1_decimal_h2.yml     |  2 +-
 .../jdbc/src/test/resources/h2/test1_double_h2.yml |  2 +-
 .../src/test/resources/h2/test1_est_date_h2.yml    |  2 +-
 .../src/test/resources/h2/test1_est_time_h2.yml    |  2 +-
 .../test/resources/h2/test1_est_timestamp_h2.yml   |  2 +-
 .../src/test/resources/h2/test1_gmt_date_h2.yml    |  2 +-
 .../src/test/resources/h2/test1_gmt_time_h2.yml    |  2 +-
 .../test/resources/h2/test1_gmt_timestamp_h2.yml   |  2 +-
 .../jdbc/src/test/resources/h2/test1_int_h2.yml    |  2 +-
 .../{test1_smallint_h2.yml => test1_list_h2.yml}   | 52 +++++++-------
 .../test/resources/h2/test1_null_and_notnull.yml   |  2 +-
 .../jdbc/src/test/resources/h2/test1_null_h2.yml   |  2 +-
 .../src/test/resources/h2/test1_pst_date_h2.yml    |  2 +-
 .../src/test/resources/h2/test1_pst_time_h2.yml    |  2 +-
 .../test/resources/h2/test1_pst_timestamp_h2.yml   |  2 +-
 .../jdbc/src/test/resources/h2/test1_real_h2.yml   |  2 +-
 .../h2/test1_selected_datatypes_null_h2.yml        |  8 ++-
 .../src/test/resources/h2/test1_smallint_h2.yml    |  2 +-
 .../jdbc/src/test/resources/h2/test1_time_h2.yml   |  2 +-
 .../src/test/resources/h2/test1_timestamp_h2.yml   |  2 +-
 .../src/test/resources/h2/test1_tinyint_h2.yml     |  2 +-
 .../src/test/resources/h2/test1_varchar_h2.yml     |  2 +-
 .../arrow/vector/util/TransferPairBenchmarks.java  |  2 +-
 47 files changed, 332 insertions(+), 142 deletions(-)
 copy java/adapter/jdbc/src/test/resources/h2/{test1_smallint_h2.yml => test1_list_h2.yml} (53%)