HamaWhiteGG commented on issue #2686:
URL: https://github.com/apache/iceberg/issues/2686#issuecomment-1167222270
@marton-bod thanks, add 'engine.hive.enabled' = 'true' can solved the
problem.
execute("CREATE TABLE IF NOT EXISTS flink_iceberg_table ( " +
" id BIGINT
," +
" data STRING
" +
") WITH ( " +
" 'connector' = 'iceberg'
," +
" 'catalog-name' = 'iceberg'
," +
" 'catalog-type' = 'hive'
," +
" 'catalog-database' = 'flink_demo'
," +
" 'catalog-table' = 'iceberg_table'
," +
" 'uri' = 'thrift://192.168.90.150:9083'
," +
" 'engine.hive.enabled' = 'true'
," +
" 'warehouse' = '" + WAREHOUSE + "'
" +
")"
);
--
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]