You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by np...@apache.org on 2021/01/12 16:20:10 UTC

[arrow] branch master updated (a91040f -> bf1d132)

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

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


    from a91040f  ARROW-11049: [Python] Expose alternate memory pools
     add bf1d132  ARROW-11158: [Julia] Implement Decimal256 support for Julia

No new revisions were added by this update.

Summary of changes:
 docs/source/status.rst                     |   2 +-
 julia/Arrow/.gitignore                     |   6 ++
 julia/Arrow/Project.toml                   |  11 ++-
 julia/Arrow/README.md                      | 144 ++++++-----------------------
 julia/Arrow/docs/Project.toml              |   1 -
 julia/Arrow/docs/make.jl                   |  20 +++-
 julia/Arrow/docs/mkdocs.yml                |  27 ------
 julia/Arrow/docs/src/manual.md             |  42 ++++++++-
 julia/Arrow/src/Arrow.jl                   |   2 +-
 julia/Arrow/src/FlatBuffers/table.jl       |   2 +-
 julia/Arrow/src/arraytypes/arraytypes.jl   |  44 +++++----
 julia/Arrow/src/arraytypes/bool.jl         |  31 +++----
 julia/Arrow/src/arraytypes/dictencoding.jl |  35 +++----
 julia/Arrow/src/arraytypes/primitive.jl    |   4 +-
 julia/Arrow/src/arraytypes/struct.jl       |   5 +
 julia/Arrow/src/arrowtypes.jl              |  17 +++-
 julia/Arrow/src/eltypes.jl                 |  31 ++++---
 julia/Arrow/src/metadata/Schema.jl         |   9 +-
 julia/Arrow/src/table.jl                   |   8 +-
 julia/Arrow/src/utils.jl                   |   5 +-
 julia/Arrow/src/write.jl                   |   2 +
 julia/Arrow/test/arrowjson.jl              |   6 +-
 julia/Arrow/test/dates.jl                  |  61 ++++++++++++
 julia/Arrow/test/runtests.jl               |  58 +++++++++++-
 julia/Arrow/test/testtables.jl             |  14 ++-
 25 files changed, 347 insertions(+), 240 deletions(-)
 create mode 100644 julia/Arrow/.gitignore
 delete mode 100644 julia/Arrow/docs/mkdocs.yml
 create mode 100644 julia/Arrow/test/dates.jl