## Arrow v1.0.1

[Diff since v1.0.0](https://github.com/JuliaData/Arrow.jl/compare/v1.0.0...v1.0.1)


**Closed issues:**
- Wrong handling of `missing` with `Char` (#68)

**Merged pull requests:**
- Check field nullability for custom extension types (#69) (@quinnj)
Bump version
1 file changed
tree: e2196f539c141a98d66dc50145b67325b7842b1f
  1. .github/
  2. docs/
  3. src/
  4. test/
  5. .gitignore
  6. .travis.yml
  7. LICENSE.md
  8. Project.toml
  9. README.md
README.md

Arrow

docs Build Status codecov

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.

Format Support

This implementation supports the 1.0 version of the specification, including support for:

  • All primitive data types
  • All nested data types
  • Dictionary encodings and messages
  • Extension types
  • Streaming, file, record batch, and replacement and isdelta dictionary messages

It currently doesn't include support for:

  • Tensors or sparse tensors
  • Flight RPC
  • C data interface

Third-party data formats:

  • csv and parquet support via the existing CSV.jl and Parquet.jl packages
  • Other Tables.jl-compatible packages automatically supported (DataFrames.jl, JSONTables.jl, JuliaDB.jl, SQLite.jl, MySQL.jl, JDBC.jl, ODBC.jl, XLSX.jl, etc.)
  • No current Julia packages support ORC or Avro data formats

See the full documentation for details on reading and writing arrow data.