Created 10-17-2017 12:26 PM
hive: SQLStdAuth : grant all on database doesn't give grant on underneath table
1. create database testdb as hive user
2. created table in employee under testdb
3. Created user a123test
4. grant ALL on database testdb to user a123test;
5. Login form beeline as user a123test
6. selct count(*) from employee
above gives me
HiveAccessControlException Permission denied: Principal [name=a123test, type=USER] does not have following privileges for operation QUERY [[SELECT] on Object [type=TABLE_OR_VIEW, name=testdb.employee]] (state=42000,code=40000)
7. If i do
grant insert,update,delete,select on table testdb.employee to user a123test;
then user a123test can select from employee table
My question is if I grant ALL at database level, why i have to give tabe level grant?
Is there any way I can give database level select/insert/Update instead of defining grant at each table level for user/role?
Created 10-17-2017 12:26 PM
all document which i read so far gives me indication that we can grant access at database level but i am I am seeing is different behavior
Created 10-26-2017 07:28 AM