Kevin Wilfong created HIVE-4336:
-----------------------------------

             Summary: Selecting from a view, and another view that also selects 
from that view fails
                 Key: HIVE-4336
                 URL: https://issues.apache.org/jira/browse/HIVE-4336
             Project: Hive
          Issue Type: Bug
          Components: Query Processor
    Affects Versions: 0.11.0
            Reporter: Kevin Wilfong
            Assignee: Kevin Wilfong


E.g. the following query fails with an NPE

CREATE VIEW test_view1 AS SELECT * FROM src;

CREATE VIEW test_view2 AS SELECT * FROM test_view1;

SELECT COUNT(*) FROM test_view1 a JOIN test_view2 b ON a.key = b.key;

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

Reply via email to