From 895bedfb6113d0258cf066e9efe9253589c25546 Mon Sep 17 00:00:00 2001 From: Piotr Findeisen Date: Tue, 2 May 2023 16:16:09 +0200 Subject: [PATCH] Remove left-over TODO comment Added in 89eab99bb83aef1f469f6de6e6958b8012d15a5b, became obsolete in a96aa9cfe904194ca4752baf99b8702b5472f162. --- .../src/main/java/io/trino/plugin/hive/HiveMetadata.java | 2 -- 1 file changed, 2 deletions(-) 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));