Repository: hive Updated Branches: refs/heads/master 26be99d52 -> a439fd6da
HIVE-18531: Vectorization: Vectorized PTF operator should not set the initial type infos (Matt McCline, reviewed by Teddy Choi) Project: http://git-wip-us.apache.org/repos/asf/hive/repo Commit: http://git-wip-us.apache.org/repos/asf/hive/commit/a439fd6d Tree: http://git-wip-us.apache.org/repos/asf/hive/tree/a439fd6d Diff: http://git-wip-us.apache.org/repos/asf/hive/diff/a439fd6d Branch: refs/heads/master Commit: a439fd6da8d67a268a73b2eb1183f04a031a5095 Parents: 26be99d Author: Matt McCline <[email protected]> Authored: Fri Jan 26 02:55:48 2018 -0600 Committer: Matt McCline <[email protected]> Committed: Fri Jan 26 02:55:48 2018 -0600 ---------------------------------------------------------------------- .../apache/hadoop/hive/ql/exec/vector/ptf/VectorPTFOperator.java | 1 - 1 file changed, 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hive/blob/a439fd6d/ql/src/java/org/apache/hadoop/hive/ql/exec/vector/ptf/VectorPTFOperator.java ---------------------------------------------------------------------- diff --git a/ql/src/java/org/apache/hadoop/hive/ql/exec/vector/ptf/VectorPTFOperator.java b/ql/src/java/org/apache/hadoop/hive/ql/exec/vector/ptf/VectorPTFOperator.java index 81c2674..c9717ba 100644 --- a/ql/src/java/org/apache/hadoop/hive/ql/exec/vector/ptf/VectorPTFOperator.java +++ b/ql/src/java/org/apache/hadoop/hive/ql/exec/vector/ptf/VectorPTFOperator.java @@ -227,7 +227,6 @@ public class VectorPTFOperator extends Operator<PTFDesc> int outputColumn = outputProjectionColumnMap[i]; vOutContext.addProjectionColumn(columnName, outputColumn); } - vOutContext.setInitialTypeInfos(Arrays.asList(outputTypeInfos)); } /*
