aboutsummaryrefslogtreecommitdiff
path: root/sql/hive/src/test/resources/ql/src/test/queries/clientnegative/authorization_desc_table_nosel.q
blob: 47663c9bb93e3997ba546fe4dc3856d70082b71c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
set hive.security.authorization.manager=org.apache.hadoop.hive.ql.security.authorization.plugin.sqlstd.SQLStdHiveAuthorizerFactoryForTest;
set hive.security.authenticator.manager=org.apache.hadoop.hive.ql.security.SessionStateConfigUserAuthenticator;
set hive.security.authorization.enabled=true;
set user.name=user1;

-- check if alter table fails as different user
create table t1(i int);
desc t1;

grant all on table t1 to user user2;
revoke select on table t1 from user user2;

set user.name=user2;
desc t1;