[
https://issues.apache.org/jira/browse/HIVE-18842?focusedWorklogId=271920&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-271920
]
ASF GitHub Bot logged work on HIVE-18842:
-----------------------------------------
Author: ASF GitHub Bot
Created on: 03/Jul/19 23:06
Start Date: 03/Jul/19 23:06
Worklog Time Spent: 10m
Work Description: vineetgarg02 commented on pull request #696: HIVE-18842
URL: https://github.com/apache/hive/pull/696#discussion_r300177681
##########
File path: ql/src/java/org/apache/hadoop/hive/ql/ddl/view/CreateViewDesc.java
##########
@@ -70,21 +72,28 @@
private String storageHandler; // only used for materialized views
private Map<String, String> serdeProps; // only used for materialized views
private Set<String> tablesUsed; // only used for materialized views
+ private List<String> sortColNames; // only used for materialized views
+ private List<FieldSchema> sortCols; // only used for materialized views
Review comment:
I am trying to figure out why is this required? Can `sortColNames` be not
used wherever `sortCols` is required?
----------------------------------------------------------------
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.
For queries about this service, please contact Infrastructure at:
[email protected]
Issue Time Tracking
-------------------
Worklog Id: (was: 271920)
Time Spent: 40m (was: 0.5h)
> CLUSTERED ON/DISTRIBUTED ON+SORTED ON support for materialized views
> --------------------------------------------------------------------
>
> Key: HIVE-18842
> URL: https://issues.apache.org/jira/browse/HIVE-18842
> Project: Hive
> Issue Type: New Feature
> Components: Materialized views
> Affects Versions: 3.0.0
> Reporter: Jesus Camacho Rodriguez
> Assignee: Jesus Camacho Rodriguez
> Priority: Major
> Labels: pull-request-available, todoc4.0
> Attachments: HIVE-18842.01.patch, HIVE-18842.01.patch,
> HIVE-18842.02.patch, HIVE-18842.patch
>
> Time Spent: 40m
> Remaining Estimate: 0h
>
> We should support defining a {{CLUSTERED ON/DISTRIBUTED ON+SORTED ON}}
> specification for materialized views.
> The syntax should be extended as follows:
> {code:sql}
> CREATE MATERIALIZED VIEW [IF NOT EXISTS] [db_name.]materialized_view_name
> [COMMENT materialized_view_comment]
> [PARTITIONED ON (col_name, ...)]
> [CLUSTERED ON (col_name, ...) | DISTRIBUTED ON (col_name, ...) SORTED ON
> (col_name, ...)] -- NEW!
> [
> [ROW FORMAT row_format]
> [STORED AS file_format]
> | STORED BY 'storage.handler.class.name' [WITH SERDEPROPERTIES (...)]
> ]
> [LOCATION hdfs_path]
> [TBLPROPERTIES (property_name=property_value, ...)]
> AS select_statement;
> {code}
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)