RussellSpitzer commented on code in PR #15514: URL: https://github.com/apache/iceberg/pull/15514#discussion_r2885508344
########## data/src/main/java/org/apache/iceberg/data/DeleteFilter.java: ########## Review Comment: Our problem was here. This may grab a cached equality delete that happened to be read with a slightly different delete schema. For example if one requiredSchema was [a,b] and the next call was [b, a] We would read the cached [a,b] with schema [b,a] and break everything. -- 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]
