blob: 907fa0219bfdc797b6d00527b9eb8b4a2f8a7584 [file] [log] [blame]
set hive.metastore.partition.inherit.table.properties=a,b;
-- The property needs to be unset at the end of the test till HIVE-3109/HIVE-3112 is fixed
create table mytbl_n0 (c1 tinyint) partitioned by (c2 string) tblproperties ('a'='myval','b'='yourval','c'='noval');
alter table mytbl_n0 add partition (c2 = 'v1');
describe formatted mytbl_n0 partition (c2='v1');
set hive.metastore.partition.inherit.table.properties=;