jx2lee opened a new issue, #1692: URL: https://github.com/apache/iceberg-go/issues/1692
### Apache Iceberg version None ### Please describe the bug 🐞 Addressed by [this](https://github.com/apache/iceberg-go/pull/1650#pullrequestreview-4878472108) ## Description CLI `initCatalog` switch currently handles only REST, Glue, Hive, and Hadoop catalog types, while `catalog.Type` also defines `SQL` and `DynamoDB`. This means values such as `--catalog sql` currently fall through to `unrecognized catalog type`, even though the SQL catalog is implemented and registered through the catalog registry. ## Current behavior ```sh iceberg --catalog sql list fails with: unrecognized catalog type ## Expected behavior The CLI should either support all implemented catalog types exposed by catalog.Type, or clearly document/validate which catalog types are supported by the CLI. -- 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]
