You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by em...@apache.org on 2019/08/31 03:22:36 UTC

[arrow] branch master updated (157b179 -> 2f3ea96)

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

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


    from 157b179  ARROW-6078: [Java] Implement dictionary-encoded subfields for List type
     add 2f3ea96  ARROW-6094: [FlightRPC] Add Flight RPC method getFlightSchema

No new revisions were added by this update.

Summary of changes:
 cpp/src/arrow/flight/client.cc                     | 25 +++++++
 cpp/src/arrow/flight/client.h                      | 14 ++++
 cpp/src/arrow/flight/flight_test.cc                | 11 +++
 cpp/src/arrow/flight/internal.cc                   | 10 +++
 cpp/src/arrow/flight/internal.h                    |  2 +
 cpp/src/arrow/flight/server.cc                     | 27 +++++++
 cpp/src/arrow/flight/server.h                      |  9 +++
 cpp/src/arrow/flight/test_util.cc                  | 14 ++++
 cpp/src/arrow/flight/types.cc                      |  7 ++
 cpp/src/arrow/flight/types.h                       | 18 +++++
 cpp/src/arrow/python/flight.cc                     | 19 +++++
 cpp/src/arrow/python/flight.h                      | 12 +++
 format/Flight.proto                                | 16 ++++
 .../java/org/apache/arrow/flight/FlightClient.java |  9 +++
 .../org/apache/arrow/flight/FlightProducer.java    | 13 ++++
 .../org/apache/arrow/flight/FlightService.java     | 13 ++++
 .../java/org/apache/arrow/flight/SchemaResult.java | 85 ++++++++++++++++++++++
 .../apache/arrow/flight/TestBasicOperation.java    |  8 ++
 python/pyarrow/_flight.pyx                         | 64 ++++++++++++++++
 python/pyarrow/flight.py                           |  1 +
 python/pyarrow/includes/libarrow_flight.pxd        | 16 +++-
 python/pyarrow/tests/test_flight.py                | 12 +++
 22 files changed, 404 insertions(+), 1 deletion(-)
 create mode 100644 java/flight/src/main/java/org/apache/arrow/flight/SchemaResult.java