blob: 586d20b18e0f1124c4af4c816a376e532d426c65 [file] [log] [blame]
set hive.mapred.mode=nonstrict;
set hive.security.authorization.manager=org.apache.hadoop.hive.ql.security.authorization.plugin.sqlstd.SQLStdHiveAuthorizerFactoryForTest;
set hive.support.concurrency=true;
set hive.txn.manager=org.apache.hadoop.hive.ql.lockmgr.DbTxnManager;
create table masking_test (key int, value string)
clustered by (value) into 2 buckets stored as orc
tblproperties ("transactional"="true");
update masking_test set key=1 where value='ddd';