Revanth14 opened a new pull request, #1286: URL: https://github.com/apache/iceberg-go/pull/1286
Fixes #1276. ## Summary Removes the dead fallback path in orphan-cleanup directory walking. `walkDirectory` now requires the table `FileIO` to implement `ListableIO` and returns a clear error if it does not. This also removes the old reflection-based `getBucketName` helper and the unused `reflect` import. ## Why All concrete IO implementations used here now implement `WalkDir` / `ListableIO`, so the old post-`ListableIO` fallback was unreachable. Removing it gets rid of brittle reflection against blob internals. ## Testing ```sh go test ./table go test ./... -- 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]
