apache / iceberg-rust

Apache Iceberg
https://rust.iceberg.apache.org/
Apache License 2.0
672 stars 159 forks source link

feat: Allow reading data type Decimal #663

Open Xuanwo opened 1 month ago

Xuanwo commented 1 month ago

Iceberg Rust doesn't support reading Decimal yet.

7734   │ panicked at /home/xuanwo/.cargo/git/checkouts/iceberg-rust-d49e83c40ef4cf40/c354983/crates/iceberg/src/spec/values.rs:428:18:
7735   │ not yet implemented

We should implement from_bytes & to_bytes correctly for Decimal.

Xuanwo commented 1 month ago

I'm currently working on running the TPC-H workload on Iceberg Rust. Let me fix this.