Add decimal IPC parquet support - #4
Merged
Merged
Conversation
Arrow IPC: The FlatBuffers schema, record batch encoder, and decoder now handle Decimal32, Decimal64, and Decimal128 columns. The Decimal table struct carries precision, scale, and bitWidth. Data buffers are read and written as raw fixed-width integers matching the underlying storage type. Parquet: The type mapping, writer, and reader support decimal columns. Decimal32 and Decimal64 use INT32 and INT64 physical types with DECIMAL converted type. Decimal128 uses FIXED_LEN_BYTE_ARRAY(16) with big-endian two's complement encoding per the Parquet specification. All code is gated behind cfg(feature = "decimal").
…er conformant with pyarrow (TSK500)
…PC code and Decimal128 as FIXED_LEN_BYTE_ARRAY in Parquet
…dth decimals and unit-correct temporal storage
…o decimal-ipc-parquet-support # Conflicts: # CHANGELOG.md
…he crate and Python package
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
No description provided.