You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by ap...@apache.org on 2019/05/13 15:03:16 UTC

[arrow] branch master updated (3939252 -> ea271b3)

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

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


    from 3939252  ARROW-5286: [Python] support struct type in from_pandas
     add ea271b3  ARROW-1280: [C++] add fixed size list type

No new revisions were added by this update.

Summary of changes:
 cpp/src/arrow/array-list-test.cc       | 214 +++++++++++++++++++++++++++++++++
 cpp/src/arrow/array.cc                 |  54 +++++++++
 cpp/src/arrow/array.h                  |  37 ++++++
 cpp/src/arrow/array/builder_nested.cc  |  75 ++++++++++++
 cpp/src/arrow/array/builder_nested.h   |  60 +++++++++
 cpp/src/arrow/builder.cc               |   8 ++
 cpp/src/arrow/compare.cc               |  30 ++++-
 cpp/src/arrow/compute/kernels/take.cc  |   4 +
 cpp/src/arrow/ipc/json-internal.cc     |  49 ++++++++
 cpp/src/arrow/ipc/json-simple-test.cc  | 131 +++++++++++++++++++-
 cpp/src/arrow/ipc/json-simple.cc       |  41 +++++++
 cpp/src/arrow/ipc/json-test.cc         |  18 ++-
 cpp/src/arrow/ipc/metadata-internal.cc |  15 +++
 cpp/src/arrow/ipc/reader.cc            |  13 ++
 cpp/src/arrow/ipc/test-common.cc       |  24 ++++
 cpp/src/arrow/ipc/test-common.h        |   3 +
 cpp/src/arrow/pretty_print-test.cc     |  43 +++++++
 cpp/src/arrow/pretty_print.cc          |   7 +-
 cpp/src/arrow/scalar.cc                |  12 ++
 cpp/src/arrow/scalar.h                 |   9 ++
 cpp/src/arrow/type-test.cc             |  21 ++++
 cpp/src/arrow/type.cc                  |  16 +++
 cpp/src/arrow/type.h                   |  44 ++++++-
 cpp/src/arrow/type_fwd.h               |   5 +
 cpp/src/arrow/type_traits.h            |  12 ++
 cpp/src/arrow/util/concatenate.cc      |   4 +
 cpp/src/arrow/visitor.cc               |   3 +
 cpp/src/arrow/visitor.h                |   3 +
 cpp/src/arrow/visitor_inline.h         |   1 +
 cpp/src/parquet/arrow/writer.cc        |   1 +
 docs/source/format/Layout.rst          |  43 +++++++
 31 files changed, 984 insertions(+), 16 deletions(-)