You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@hive.apache.org by "Krisztian Kasa (Jira)" <ji...@apache.org> on 2021/01/11 09:25:00 UTC

[jira] [Created] (HIVE-24613) Support Values clause without Insert

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)