This is an automated email from the ASF dual-hosted git repository.
abstractdog pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/hive.git.
from 4d0d6d6 HIVE-24497: Node heartbeats from LLAP Daemon to the client
are not ma… (#1755)
add dcccbc5 HIVE-24245: Vectorized PTF with count and distinct over
partition producing incorrect results. (#1649) (Laszlo Bodor reviewed by
Panagiotis Garefalakis)
No new revisions were added by this update.
Summary of changes:
.../ptf/VectorPTFEvaluatorBytesCountDistinct.java | 41 +
.../ptf/VectorPTFEvaluatorCountDistinct.java | 112 +
.../VectorPTFEvaluatorDecimalCountDistinct.java | 40 +
.../ptf/VectorPTFEvaluatorDoubleCountDistinct.java | 40 +
.../ptf/VectorPTFEvaluatorLongCountDistinct.java | 40 +
.../VectorPTFEvaluatorTimestampCountDistinct.java | 41 +
.../hive/ql/optimizer/physical/Vectorizer.java | 9 +-
.../apache/hadoop/hive/ql/plan/VectorPTFDesc.java | 59 +-
.../hive/ql/udf/generic/GenericUDAFCount.java | 8 +-
.../clientpositive/vector_ptf_count_distinct.q | 522 ++
.../llap/vector_ptf_count_distinct.q.out | 6618 ++++++++++++++++++++
11 files changed, 7516 insertions(+), 14 deletions(-)
create mode 100644
ql/src/java/org/apache/hadoop/hive/ql/exec/vector/ptf/VectorPTFEvaluatorBytesCountDistinct.java
create mode 100644
ql/src/java/org/apache/hadoop/hive/ql/exec/vector/ptf/VectorPTFEvaluatorCountDistinct.java
create mode 100644
ql/src/java/org/apache/hadoop/hive/ql/exec/vector/ptf/VectorPTFEvaluatorDecimalCountDistinct.java
create mode 100644
ql/src/java/org/apache/hadoop/hive/ql/exec/vector/ptf/VectorPTFEvaluatorDoubleCountDistinct.java
create mode 100644
ql/src/java/org/apache/hadoop/hive/ql/exec/vector/ptf/VectorPTFEvaluatorLongCountDistinct.java
create mode 100644
ql/src/java/org/apache/hadoop/hive/ql/exec/vector/ptf/VectorPTFEvaluatorTimestampCountDistinct.java
create mode 100644
ql/src/test/queries/clientpositive/vector_ptf_count_distinct.q
create mode 100644
ql/src/test/results/clientpositive/llap/vector_ptf_count_distinct.q.out