Releases: buoyant-data/oxbow
Releases · buoyant-data/oxbow
v1.9.1
v1.9.0
Allow the 1.9.0 release through github actions
v1.8.9
Rebuild with patched datafusion and arrow builds for improving CSV ge…
v1.8.8
Always quote CSVs coming out of lambda-to-csv Digging deeper into load failures I discovered that while arrow-csv and other Rust CSV parsers can handle some characters properly, some RDMS and C-based CSV parsers (older) cannot, without quoting. This relies on a backport of apache/datafusion#20813 to the 52.4.0 release in order to support this. It also requires arrow-csv 57.2.0 or later since that release is the first that `QuoteStyle` exists.
v1.8.7
Add support for coercing boolean types in cdf-to-csv Some primitive databases treat booleans as integer values Signed-off-by: R. Tyler Croy <rtyler@buoyantdata.com>
v1.8.6
Expose some configuration for cdf-to-csv to customize output CSVs Some database engines need specific formattings to handle the conversion of nulls or timestamps
v1.8.5
upgrade to the latest released crate Signed-off-by: R. Tyler Croy <rtyler@buoyantdata.com>
v1.8.4
Enforce string column escaping when generating CSVs I had made the assumption that the Datafusion writers would do this, but newlines will potentially break the output CSV. If the input strings have newlines and commas, that seems to break things Signed-off-by: R. Tyler Croy <rtyler@buoyantdata.com>
v1.8.3
Bump for the next release
v1.8.2
Upgrade to delta-rs 0.30.1 and improve performance with deferred tabl…