Details
-
Bug
-
Status: Open
-
Major
-
Resolution: Unresolved
-
1.5.0
-
None
-
None
-
None
Description
A nested query on view incorrectly enforces base table privileges instead of view privileges. For example,
create view v1 as select * from t1; grant select on table v1 to role test; select * from ( select * from v1) v2;
doesn't work if you have read privilege on view v1. It only works when you have read privilege on underlying table t1.
Attachments
Attachments
Issue Links
- is blocked by
-
HIVE-10875 Select query with view in subquery adds underlying table as direct input
- Resolved