Uploaded image for project: 'Hive'
  1. Hive
  2. HIVE-14805

Subquery inside a view will have the object in the subquery as the direct input

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Closed
    • Major
    • Resolution: Fixed
    • 2.0.1
    • 2.2.0
    • Views
    • None

    Description

      Here is the repro steps.

      create table t1(col string);
      create view v1 as select * from t1;
      create view dataview as select * from  (select * from v1) v2;
      select * from dataview;
      

      If hive is configured with authorization hook like Sentry, it will require the access not only for dataview but also for v1, which should not be required.
      The subquery seems to not carry insideview property from the parent query.

      Attachments

        1. HIVE-14805.1.patch
          3 kB
          Aihua Xu
        2. HIVE-14805.2.patch
          18 kB
          Aihua Xu

        Issue Links

          Activity

            People

              aihuaxu Aihua Xu
              aihuaxu Aihua Xu
              Votes:
              0 Vote for this issue
              Watchers:
              3 Start watching this issue

              Dates

                Created:
                Updated:
                Resolved: