blob: 29d4e80e99ee48c6f99c7e7942584d93429e057b [file] [log] [blame]
set hive.security.authorization.manager=org.apache.hadoop.hive.ql.security.authorization.DefaultHiveAuthorizationProvider;
create table hive_test_src ( col1 string ) stored as textfile;
set hive.security.authorization.enabled=true;
grant Update on table hive_test_src to user hive_test_user;
load data local inpath '../../data/files/test.dat' overwrite into table hive_test_src ;