use partition level serde properties
------------------------------------
Key: HIVE-1913
URL: https://issues.apache.org/jira/browse/HIVE-1913
Project: Hive
Issue Type: Bug
Reporter: He Yongqiang
Assignee: He Yongqiang
create table src_part_serde (key int, value string) partitioned by (ds string)
stored as sequencefile;
insert overwrite table src_part_serde partition (ds='2011') select * from src;
alter table src_part_serde set serde
'org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe' with SERDEPROPERTIES
('serialization.format'='\t');
select key, value from src_part_serde where ds='2011' order by key, value limit
20;
will get null results.
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.