| tag | feaf56d5520dfef8ec170b95edaee52c5ea6e078 | |
|---|---|---|
| tagger | github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> | Sun Jan 31 06:41:06 2021 +0000 |
| object | 9eefced4ae5f7411540f2586d256569fb037dd7a |
## Arrow v1.2.2 [Diff since v1.2.1](https://github.com/JuliaData/Arrow.jl/compare/v1.2.1...v1.2.2) **Closed issues:** - Segmentation Fault with Threads.@spawn + Tables.partitioner + write with compression (#82) - Types deserialize differently during session in which they were written (#88) - Producing unsigned dict encoding indices; should be signed (#112) - Unsigned integers as indices in DictEncoded type (#113) - DictEncoded doesn't write as DictEncoded (#116) - Errors writing file with missing in categorical (#117) **Merged pull requests:** - Make compressed writing threadsafe (#118) (@quinnj) - Rework dict encoding of PooledArray/CategoricalArray to fix outstandi… (#119) (@quinnj)
| commit | 9eefced4ae5f7411540f2586d256569fb037dd7a | [log] [tgz] |
|---|---|---|
| author | Jacob Quinn <quinn.jacobd@gmail.com> | Sat Jan 30 23:20:11 2021 -0700 |
| committer | GitHub <noreply@github.com> | Sat Jan 30 23:20:11 2021 -0700 |
| tree | c471726eb4d7a441d47803a9e872ad1b8d6a3d7e | |
| parent | 62266b5919f6bc5b543f9cfed64d7c1bf4818558 [diff] |
Bump version
This is a pure Julia implementation of the Apache Arrow data standard. This package provides Julia AbstractVector objects for referencing data that conforms to the Arrow standard. This allows users to seamlessly interface Arrow formatted data with a great deal of existing Julia code.
Please see this document for a description of the Arrow memory layout.
The package can be installed by typing in the following in a Julia REPL:
julia> using Pkg; Pkg.add("Arrow")
or to use the official-apache code that follows the official apache release process, you can do:
julia> using Pkg; Pkg.add(url="https://github.com/apache/arrow", subdir="julia/Arrow.jl")
The code in the apache/arrow repository is officially part of the apache/arrow project and as such follows the regulated release cadence of the entire project, following standard community voting protocols. The JuliaData/Arrow.jl repository can be viewed as a sort of “dev” or “latest” branch of this code that may release more frequently, but without following official apache release guidelines. The two repositories are synced, however, so any bugfix patches in JuliaData will be upstreamed to apache/arrow for each release.
This implementation supports the 1.0 version of the specification, including support for:
It currently doesn't include support for:
Third-party data formats:
See the full documentation for details on reading and writing arrow data.