Commit c28d88c
committed
[BugFix] Fix parquet Int96 timestamp write for Arrow 24
parquet::Int96::value changed from a C array (uint32_t[3]) to
std::array<uint32_t, 3> in the Arrow 24 bundled Parquet headers, so pointer
arithmetic and reinterpret_cast on it no longer compile. Use .data() to get
the underlying pointer in level_builder's INT96 timestamp encoding path.1 parent 6b86626 commit c28d88c
1 file changed
Lines changed: 2 additions & 2 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
394 | 394 | | |
395 | 395 | | |
396 | 396 | | |
397 | | - | |
398 | | - | |
| 397 | + | |
| 398 | + | |
399 | 399 | | |
400 | 400 | | |
401 | 401 | | |
| |||
0 commit comments