blob: 152c8e5cf305a54199dd27a1e9bd575691fa5428 [file] [log] [blame]
-- SORT_BEFORE_DIFF
create table src_autho_test as select * from src;
grant All on table src_autho_test to user hive_test_user;
set hive.security.authorization.enabled=true;
show grant user hive_test_user on table src_autho_test;
select key from src_autho_test order by key limit 20;
drop table src_autho_test;