NoahKusaba commented on issue #2905: URL: https://github.com/apache/iceberg-rust/issues/2905#issuecomment-5320270050
Hey @TwinklerG I just noticed your comment. This is the AI answer to your question (which I think answers it quite well): The bug is on the read path: TableScanBuilder::build resolves the schema via snapshot.schema(metadata) instead of metadata.current_schema(). Schema evolution creates no snapshot, so the new column stays invisible — no matter how it was added. Using UpdateSchema is the correct way to add a column and is exactly what triggers the bug, so it's not a workaround. -- 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]
