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