[ https://issues.apache.org/jira/browse/HIVE-24633?focusedWorklogId=541646&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-541646 ]
ASF GitHub Bot logged work on HIVE-24633: ----------------------------------------- Author: ASF GitHub Bot Created on: 26/Jan/21 04:06 Start Date: 26/Jan/21 04:06 Worklog Time Spent: 10m Work Description: jcamachor merged pull request #1865: URL: https://github.com/apache/hive/pull/1865 ---------------------------------------------------------------- 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: us...@infra.apache.org Issue Time Tracking ------------------- Worklog Id: (was: 541646) Time Spent: 1h (was: 50m) > Support CTE with column labels > ------------------------------ > > Key: HIVE-24633 > URL: https://issues.apache.org/jira/browse/HIVE-24633 > Project: Hive > Issue Type: Improvement > Components: Parser > Reporter: Krisztian Kasa > Assignee: Krisztian Kasa > Priority: Major > Labels: pull-request-available > Fix For: 4.0.0 > > Time Spent: 1h > Remaining Estimate: 0h > > {code} > with cte1(a, b) as (select int_col x, bigint_col y from t1) > select a, b from cte1{code} > {code} > a b > 1 2 > 3 4 > {code} > {code} > <query expression> ::= > [ <with clause> ] <query expression body> > [ <order by clause> ] [ <result offset clause> ] [ <fetch first clause> ] > <with clause> ::= > WITH [ RECURSIVE ] <with list> > <with list> ::= > <with list element> [ { <comma> <with list element> }... ] > <with list element> ::= > <query name> [ <left paren> <with column list> <right paren> ] > AS <table subquery> [ <search or cycle clause> ] > <with column list> ::= > <column name list> > {code} -- This message was sent by Atlassian Jira (v8.3.4#803005)