Ben Baumgold
Ben Baumgold
It would be very useful to support reading (and potentially writing) partitioned datasets. The implementation could be similar to JuliaIO/Parquet.jl#138/JuliaIO/Parquet.jl#142 and would bring Arrow.jl up to par with [Pyarrow's dataset...
When writing a table with Arrow.jl that contains a nullable column, the Arrow data cannot be read by Pyarrow: ```julia julia> Arrow.write("/tmp/nothing.arrow", (col=Vector{Union{Nothing,Int32}}([1,2,3,nothing]),)) "/tmp/nothing.arrow" julia> Arrow.Table("/tmp/nothing.arrow") Arrow.Table with 4 rows,...
It appears that Arrow.jl somehow incorrectly handles columns with nullable types (Union with Nothing) as the schema of the resulting table containing such a column doesn't match what's reported by...
The current version of the Cboe MarketData dissector is based on the Cboe PITCH spec v2.39.4 from August 2018. Since then Cboe has upgraded to v2.41.29. The current dissector is...
The current version of the Cboe OrderEntry dissector is based on the Cboe BOE spec v2.10.11 from Dec 2019. Since then Cboe has upgraded to v2.11.42. The current dissector is...
ODBC v0.8.4 loaded the system specified odbc drivers by default. Upon upgrading to ODBC v1.0.4 that seems to no longer be the case when when setting OVERRIDE_ODBCJL_CONFIG=true and explicitly specifying...
This is a proposal for how we could extend `DateTime` to support new precisions (e.g. `NanoDateTime`) without breaking existing code. Feedback appreciated.
Currently default values that are not of the same type as the arg_type are disallowed. This is overly restrictive and could be relaxed to allow default values that can be...
Differences: https://github.com/iamed2/LibPQ.jl/compare/v1.17.1...master