Steve Carlin created HIVE-25515:
-----------------------------------
Summary: Allow optional "AS" in column aliases in Values clause
Key: HIVE-25515
URL: https://issues.apache.org/jira/browse/HIVE-25515
Project: Hive
Issue Type: Improvement
Components: HiveServer2
Reporter: Steve Carlin
The following query does not work:
with v as (values (1 as x), (1), (1), (1), (1), (1), (1), (1), (1), (1))
select v.x from v, v v2, v v3, v v4, v v5, v v6;
...because of the "1 as x" clause. The "as" should be allowed but optional.
--
This message was sent by Atlassian Jira
(v8.3.4#803005)