blob: 26d7332ecb88c57885350003e4aa646375dfe802 [file] [log] [blame]
set hive.table.parameters.default=p1=v1,P2=v21=v22=v23;
CREATE TABLE table_p1 (a STRING);
DESC EXTENDED table_p1;
set hive.table.parameters.default=p3=v3;
CREATE TABLE table_p2 LIKE table_p1;
DESC EXTENDED table_p2;
CREATE TABLE table_p3 AS SELECT * FROM table_p1;
DESC EXTENDED table_p3;