Skip to content

Commit

Permalink
datalake: suppress alignment errors from Arrow
Browse files Browse the repository at this point in the history
When reading Parquet files, the Arrow library reads int32s from
unaligned memory. After upgrading to Clang 18 we started getting
warnings about this when testing locally and errors in CI. This is safe
to suppress: the read code path is only used in tests.
  • Loading branch information
jcipar committed Oct 10, 2024
1 parent 8aa3cbb commit b5cfb5c
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions ubsan_suppressions.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@ nonnull-attribute:aead.c
alignment:crc32c_arm64.cc
function:openssl/*.c
function:openssl-fips/*.c
alignment:arrow/util/ubsan.h

0 comments on commit b5cfb5c

Please sign in to comment.