fallintoplace opened a new pull request, #1518: URL: https://github.com/apache/iceberg-go/pull/1518
## Motivation The Iceberg position delete schema requires `pos` values to be non-null. The Arrow scanner currently reads the raw `Int64Values` backing slice without checking the validity bitmap, so a malformed delete file containing a null position may be interpreted as a real row position instead of returning an invalid-schema error. ## Changes - Reject null values in position delete `pos` chunks with `iceberg.ErrInvalidSchema`. - Add a regression test covering a nullable position array and verifying the error contract. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
