Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ EnumX = "4e289a0a-7415-4d19-859d-a7e5c4648b56"
Mmap = "a63ad114-7e13-5084-954f-fe012c677804"
PooledArrays = "2dfb63ee-cc39-5dd5-95bd-886bf059d720"
SentinelArrays = "91c51154-3ec4-41a3-a24f-3f23e20d615c"
Serialization = "9e88b42a-f829-5b0c-bbe9-9e923198166b"
StringViews = "354b36f9-a18e-4713-926e-db85100087ba"
Tables = "bd369af6-aec1-5ad0-b16a-f7cc5008161c"
TimeZones = "f269a46b-ccf7-5d73-abea-4c690281aa53"
Expand Down
5 changes: 4 additions & 1 deletion src/Arrow.jl
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,12 @@ This implementation supports the 1.0 version of the specification, including sup
* Extension types
* Streaming, file, record batch, and replacement and isdelta dictionary messages
* Buffer compression/decompression via the standard LZ4 frame and Zstd formats
* C Data Interface import

It currently doesn't include support for:
* Tensors or sparse tensors
* Flight RPC
* C data interface
* C Data Interface export

Third-party data formats:
* csv and parquet support via the existing [CSV.jl](https://github.com/JuliaData/CSV.jl) and [Parquet.jl](https://github.com/JuliaIO/Parquet.jl) packages
Expand All @@ -44,6 +45,7 @@ module Arrow
using Base.Iterators
using Mmap
import Dates
import Serialization
using DataAPI,
Tables,
SentinelArrays,
Expand Down Expand Up @@ -76,6 +78,7 @@ include("utils.jl")
include("arraytypes/arraytypes.jl")
include("eltypes.jl")
include("table.jl")
include("cdata.jl")
include("write.jl")
include("append.jl")
include("show.jl")
Expand Down
Loading
Loading