Krisztian Kasa created HIVE-24613:
-------------------------------------
Summary: Support Values clause without Insert
Key: HIVE-24613
URL: https://issues.apache.org/jira/browse/HIVE-24613
Project: Hive
Issue Type: Improvement
Reporter: Krisztian Kasa
Assignee: Krisztian Kasa
Standalone:
{code}
VALUES(1,2,3),(4,5,6);
{code}
{code}
1 2 3
4 5 6
{code}
In subquery:
{code}
SELECT * FROM (VALUES(1,2,3),(4,5,6)) as FOO;
{code}
{code}
1 2 3
4 5 6
{code}
--
This message was sent by Atlassian Jira
(v8.3.4#803005)