Description
create table test (key int, value string) partitioned by (p int) stored as textfile;
insert into table test partition (p=1) select * from src limit 10;
alter table test set fileformat orc;
insert into table test partition (p=2) select * from src limit 10;
describe test;
select * from test where p=1 and key > 0;
select * from test where p=2 and key > 0;
select * from test where key > 0;
throws a classcast exception
Attachments
Attachments
Issue Links
- relates to
-
HIVE-7071 Use custom Tez split generator to support schema evolution
- Closed
- links to