blob: 316f25a1bae792681942e3d863919ca6e5f27318 [file] [log] [blame]
--! qt:authorizer
set hive.support.concurrency=true;
set hive.txn.manager=org.apache.hadoop.hive.ql.lockmgr.DbTxnManager;
-- check update without update priv
create table auth_noupd(i int, j int) clustered by (j) into 2 buckets stored as orc TBLPROPERTIES ('transactional'='true');
set user.name=user1;
update auth_noupd set i = 0 where i > 0;