Skip to content

qvd2parquet v1.0.1

Choose a tag to compare

@github-actions github-actions released this 23 Aug 14:13
· 30 commits to main since this release
e4c9323

Fixed

  • A zero-padded number is no longer read as the number. SAP stores its keys as
    fixed-width character codes -- BELNR is CHAR(10), so document 100000001
    is written 0100000001 -- and the display string was being compared to the
    numeric side as a number, which made the padding look like formatting. The
    column was typed int64 and the padding dropped, leaving a key that no
    longer joins back to the source system. A column whose values are integers
    stored beside their own zero-padded digits is now written as utf8, as one
    column rather than a number with a __text sidecar. Padded decimals and
    dates are unaffected, being formatting and dates rather than codes, and so is
    an explicit --dual: the rule is inference, so it fills in for --dual=auto
    only and never overrides a side named on the command line.

Install

Download the archive for your platform below, unpack it, and put qvd2parquet
on your PATH. Verify the download against SHA256SUMS:

shasum -a 256 -c SHA256SUMS --ignore-missing

Binaries are pure Go and statically linked, so they need no runtime
dependencies: Linux (amd64, arm64), Windows (amd64, arm64) and macOS (amd64,
arm64).