----------------------------------------------------------- This is an automatically generated e-mail. To reply, visit: https://reviews.apache.org/r/62596/ -----------------------------------------------------------
Review request for hive and Prasanth_J. Bugs: HIVE-17611 https://issues.apache.org/jira/browse/HIVE-17611 Repository: hive-git Description ------- Create new LazyBinarySerDe2 class which derives from LazyBinarySerDe. Avoid the ObjectInspector getCategory()/getPrimitiveCategory() calls for every row/column by making those calls during initialization and creating serialization objects for each column. Then serialization of the row is just a matter of calling serialize() on these pre-initialized objects. Diffs ----- ql/src/java/org/apache/hadoop/hive/ql/parse/SemanticAnalyzer.java 4814fcd ql/src/test/queries/clientpositive/input_lazyserde2.q PRE-CREATION ql/src/test/results/clientpositive/input_lazyserde2.q.out PRE-CREATION serde/src/java/org/apache/hadoop/hive/serde2/lazybinary/LazyBinarySerDe.java 7ab2083 serde/src/java/org/apache/hadoop/hive/serde2/lazybinary/LazyBinarySerDe2.java PRE-CREATION serde/src/test/org/apache/hadoop/hive/serde2/lazybinary/TestLazyBinaryFast.java 13c73be serde/src/test/org/apache/hadoop/hive/serde2/lazybinary/TestLazyBinarySerDe.java 0cd5736 serde/src/test/org/apache/hadoop/hive/serde2/lazybinary/TestLazyBinarySerDe2.java PRE-CREATION Diff: https://reviews.apache.org/r/62596/diff/1/ Testing ------- Junit, qfile tests added based on existing LazyBinarySerDe tests. Thanks, Jason Dere