blob: 07a93d1e9ab022545220353a5011a225c5ba75fb [file] [log] [blame]
SET hive.exec.schema.evolution=true;
-- Currently, string to int conversion is not supported because it isn't in the lossless
-- TypeIntoUtils.implicitConvertible conversions.
create table src_orc (key string, val string) stored as orc;
alter table src_orc change key key int;