uros-b commented on PR #17828: URL: https://github.com/apache/iceberg/pull/17828#issuecomment-5452038832
Thank you for the well scoped fix. `SQLRecoverableException` is a direct sibling of `SQLTransientException` (not a subtype), so it fell through both existing guards. The new `instanceof` clause closes that gap, its semantics precisely match what `reconnect()` does (close + new connection), `maxRetries=1` bounds retries, and the unit test isolates the new path using a SQLSTATE deliberately absent from the pre-existing retryable set. -- 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]
