markmckeown opened a new issue, #14860:
URL: https://github.com/apache/iceberg/issues/14860

   ### Apache Iceberg version
   
   1.10.0 (latest release)
   
   ### Query engine
   
   None
   
   ### Please describe the bug 🐞
   
   In the `HiveCatalog` implementation the Catalog name is ignored. For example 
in the `tableExists` method there is the following code:
   
   `Table table = clients.run(client -> client.getTable(database, tableName));`
   
   If the HiveCatalog used the Catalog name provided then the code would be:
   
   `Table table = clients.run(client -> client.getTable(name, database, 
tableName));`
   
   This change reflects that IMetaStoreClient code has two versions of the 
getTable method, one of which takes a Catalog name. Apologies if this is a 
duplicate issue, or there is a documented reason why Catalog names are not 
supported in HiveCatalog. 
   
   Raised as a bug rather than a feature request as the API takes a Catalog 
name so the expectation is that it will use it as expected.
   
   ### Willingness to contribute
   
   - [ ] I can contribute a fix for this bug independently
   - [x] I would be willing to contribute a fix for this bug with guidance from 
the Iceberg community
   - [ ] I cannot contribute a fix for this bug at this time


-- 
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]

Reply via email to