blob: a4ef2acbfd406e7efc70ed14925e4bea48b74fad [file] [log] [blame]
-- protect mode: syntax to change protect mode works and queries are not blocked if a table or partition is not in protect mode
drop table tbl_protectmode__no_drop;
create table tbl_protectmode__no_drop (col string);
select * from tbl_protectmode__no_drop;
alter table tbl_protectmode__no_drop enable no_drop;
desc extended tbl_protectmode__no_drop;
drop table tbl_protectmode__no_drop;