diff --git a/plugin/trino-hive/src/main/java/io/trino/plugin/hive/HiveMetadata.java b/plugin/trino-hive/src/main/java/io/trino/plugin/hive/HiveMetadata.java index e81807622908..f587e737b979 100644 --- a/plugin/trino-hive/src/main/java/io/trino/plugin/hive/HiveMetadata.java +++ b/plugin/trino-hive/src/main/java/io/trino/plugin/hive/HiveMetadata.java @@ -1031,8 +1031,6 @@ private Map getEmptyTableProperties(ConnectorTableMetadata table // When metastore is configured with metastore.create.as.acid=true, it will also change Trino-created tables // behind the scenes. In particular, this won't work with CTAS. - // TODO (https://github.com/trinodb/trino/issues/1956) convert this into normal table property - boolean transactional = HiveTableProperties.isTransactional(tableMetadata.getProperties()).orElse(false); tableProperties.put(TRANSACTIONAL, String.valueOf(transactional));