kasakrisz commented on code in PR #3936: URL: https://github.com/apache/hive/pull/3936#discussion_r1067167438
########## ql/src/java/org/apache/hadoop/hive/ql/ddl/view/materialized/alter/rewrite/AlterMaterializedViewRewriteAnalyzer.java: ########## @@ -68,10 +68,12 @@ public void analyzeInternal(ASTNode root) throws SemanticException { Table materializedViewTable = getTable(tableName, true); // One last test: if we are enabling the rewrite, we need to check that query - // only uses transactional (MM and ACID) tables + // only uses transactional (MM and ACID and Iceberg) tables if (rewriteEnable) { for (SourceTable sourceTable : materializedViewTable.getMVMetadata().getSourceTables()) { - if (!AcidUtils.isTransactionalTable(sourceTable.getTable())) { + Table table = new Table(sourceTable.getTable()); Review Comment: `SourceTable` and `metastore.api.Table` are thrift generated classes to transfer data only. These classes don't contain any functionality. The one I created here is a `ql.metadata.Table` instance which wraps a `metastore.api.Table` it contains both data and some functionality parse and persist data. -- 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: gitbox-unsubscr...@hive.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: gitbox-unsubscr...@hive.apache.org For additional commands, e-mail: gitbox-h...@hive.apache.org