| tag | 61a1d6d4ed660e1778a1decdddbee07c85cd882e | |
|---|---|---|
| tagger | github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> | Tue Jan 19 18:30:24 2021 +0000 |
| object | 12eb00a2f6b076094fa408853d98ef2415fce1ea |
## Arrow v1.2.0 [Diff since v1.1.0](https://github.com/JuliaData/Arrow.jl/compare/v1.1.0...v1.2.0) **Closed issues:** - Error with DatePart('Z') (#81) - Cannot `copy` a DataFrame containing a DictEncoded field with a missing value (#101) **Merged pull requests:** - change UUID <-> Arrow mapping to (de)serialize to/from 16-byte FixedSizeBinary (#103) (@jrevels) - add isbitstype optimized path for FixedSizeList getindex (#104) (@jrevels) - bump Project.toml to v1.2.0 (#107) (@jrevels)
| commit | 12eb00a2f6b076094fa408853d98ef2415fce1ea | [log] [tgz] |
|---|---|---|
| author | Jarrett Revels <jarrettrevels@gmail.com> | Tue Jan 19 13:12:53 2021 -0500 |
| committer | GitHub <noreply@github.com> | Tue Jan 19 11:12:53 2021 -0700 |
| tree | 78610e844a93b29bd97ba54f594f4d6515e80846 | |
| parent | 76ee57d90d1c1aa8da6db8973eac6de0718ea7f5 [diff] |
bump Project.toml to v1.2.0 (#107)
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.