pvary commented on issue #1831:
URL: https://github.com/apache/iceberg/issues/1831#issuecomment-734727775
There might be some issue with the table properties:
```
private static boolean hiveEngineEnabled(TableMetadata metadata,
Configuration conf) {
if (metadata.properties().get(TableProperties.ENGINE_HIVE_ENABLED) !=
null) {
// We know that the property is set, so default value will not be used,
return metadata.propertyAsBoolean(TableProperties.ENGINE_HIVE_ENABLED,
false);
}
return conf.getBoolean(ConfigProperties.ENGINE_HIVE_ENABLED,
TableProperties.ENGINE_HIVE_ENABLED_DEFAULT);
}
```
Could we check the metadata value for `TableProperties.ENGINE_HIVE_ENABLED`?
Thanks,
Peter
----------------------------------------------------------------
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.
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]