[
https://issues.apache.org/jira/browse/HIVE-26578?focusedWorklogId=831801&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-831801
]
ASF GitHub Bot logged work on HIVE-26578:
-----------------------------------------
Author: ASF GitHub Bot
Created on: 07/Dec/22 15:40
Start Date: 07/Dec/22 15:40
Worklog Time Spent: 10m
Work Description: kasakrisz commented on code in PR #3823:
URL: https://github.com/apache/hive/pull/3823#discussion_r1042367508
##########
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:
Renamed the constant but kept the value since it would break compatibility.
Issue Time Tracking
-------------------
Worklog Id: (was: 831801)
Time Spent: 1h 20m (was: 1h 10m)
> 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 20m
> 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)