| tag | a0015681961b1091ccfdadf94d8745b8b55082bb | |
|---|---|---|
| tagger | github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> | Wed Jan 06 05:06:18 2021 +0000 |
| object | dc559c180c198650c99ab9d1cfc7b0766902c7f5 |
## Arrow v1.1.0 [Diff since v1.0.3](https://github.com/JuliaData/Arrow.jl/compare/v1.0.3...v1.1.0) **Closed issues:** - memory leaking when reading compressed arrow files (#80) - writing column with missing / struct data errors (#84) - downstream packages need to put `Arrow.ArrowTypes.registertype!` statements in `__init__` (#87) **Merged pull requests:** - Support new Decimal256 type (#79) (@quinnj) - fix typo (#83) (@ericphanson) - add `ArrowTypes.default` methods and tests for dates (#86) (@ericphanson) - add default UUID <-> UInt128 Arrow type mapping (#89) (@jrevels) - bump Project.toml to v1.1.0 (#94) (@jrevels) - Add warning for `Arrow.ArrowTypes.registertype!` (#96) (@ericphanson) - Fix `deploydocs` (#97) (@ericphanson) - convert Arrow-flavored eltypes to Julia-flavored eltypes on copy (#98) (@jrevels) - Fix copy on DictEncoding arrays with missing values (#99) (@quinnj) - Add BitIntegers compat (#100) (@quinnj)
| commit | dc559c180c198650c99ab9d1cfc7b0766902c7f5 | [log] [tgz] |
|---|---|---|
| author | Jacob Quinn <quinn.jacobd@gmail.com> | Tue Jan 05 21:40:57 2021 -0700 |
| committer | GitHub <noreply@github.com> | Tue Jan 05 21:40:57 2021 -0700 |
| tree | ac4a1474b766caedc5a23db8fc2ebea00ef09dcc | |
| parent | 0ab7d0c5d9d7dd1d592e7861efc81a2d16030efb [diff] |
Add BitIntegers compat (#100)
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.
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.