blob: a19b0e3095252327ef959a930ac96319977ff0b7 [file] [log] [blame]
set hive.support.concurrency=true;
set hive.txn.manager=org.apache.hadoop.hive.ql.lockmgr.DbTxnManager;
set hive.enforce.bucketing=true;
create table dv_basetable (a int, b varchar(256), c decimal(10,2));
create view dv_view as select a, b, c from dv_basetable;
delete from dv_view where b = 'fred';