samredai commented on issue #4410:
URL: https://github.com/apache/iceberg/issues/4410#issuecomment-1079787229
Hah, I made this issue too quickly. Using the `setConf` method on
`JdbcCatalog` solves this (I was using the interface type which is why I missed
it).
```java
import org.apache.hadoop.conf.Configuration;
...
JdbcCatalog catalog = new JdbcCatalog();
Configuration conf = new Configuration();
catalog.setConf(conf)
catalog.initialize("demo", properties);
```
--
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]