[
https://issues.apache.org/jira/browse/HIVE-26578?focusedWorklogId=831743&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-831743
]
ASF GitHub Bot logged work on HIVE-26578:
-----------------------------------------
Author: ASF GitHub Bot
Created on: 07/Dec/22 12:47
Start Date: 07/Dec/22 12:47
Worklog Time Spent: 10m
Work Description: deniskuzZ commented on code in PR #3823:
URL: https://github.com/apache/hive/pull/3823#discussion_r1042155672
##########
ql/src/java/org/apache/hadoop/hive/ql/ddl/view/create/CreateMaterializedViewDesc.java:
##########
@@ -237,11 +237,17 @@ public void setTblProps(Map<String, String> tblProps) {
this.tblProps = tblProps;
}
- @Explain(displayName = "table properties")
public Map<String, String> getTblProps() {
return tblProps;
}
+ @Explain(displayName = "table properties")
+ public Map<String, String> getTblPropsExplain() { // only for displaying plan
+ return PlanUtils.getPropertiesForExplain(tblProps,
+ hive_metastoreConstants.TABLE_IS_CTAS,
Review Comment:
should we rename the config to something like TABLE_IS_CTAS_OR_CMV or add a
new one?
Issue Time Tracking
-------------------
Worklog Id: (was: 831743)
Time Spent: 1h 10m (was: 1h)
> Enable Iceberg storage format for materialized views
> ----------------------------------------------------
>
> Key: HIVE-26578
> URL: https://issues.apache.org/jira/browse/HIVE-26578
> Project: Hive
> Issue Type: Improvement
> Components: Materialized views
> Reporter: Krisztian Kasa
> Assignee: Krisztian Kasa
> Priority: Major
> Labels: pull-request-available
> Time Spent: 1h 10m
> Remaining Estimate: 0h
>
> {code}
> create materialized view mat1 stored by iceberg stored as orc tblproperties
> ('format-version'='1') as
> select tbl_ice.b, tbl_ice.c from tbl_ice where tbl_ice.c > 52;
> {code}
--
This message was sent by Atlassian Jira
(v8.20.10#820010)