You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pinot.apache.org by ja...@apache.org on 2020/07/14 18:11:33 UTC

[incubator-pinot] branch master updated (df0f37c -> e5ddff4)

This is an automated email from the ASF dual-hosted git repository.

jackie pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-pinot.git.


    from df0f37c  Fix LocalPinotFSTest that fails on fast hardware (#5603)
     add e5ddff4  Support BYTES type for dictinctCount (#5701)

No new revisions were added by this update.

Summary of changes:
 .../query/DictionaryBasedAggregationOperator.java  |  45 +++-
 .../core/plan/maker/InstancePlanMakerImplV2.java   |   9 +-
 .../function/DistinctCountAggregationFunction.java |  13 +
 .../dictionary/BytesOffHeapMutableDictionary.java  |   6 +
 .../dictionary/BytesOnHeapMutableDictionary.java   |   6 +
 .../dictionary/DoubleOffHeapMutableDictionary.java |   5 +
 .../dictionary/DoubleOnHeapMutableDictionary.java  |   6 +
 .../dictionary/FloatOffHeapMutableDictionary.java  |   5 +
 .../dictionary/FloatOnHeapMutableDictionary.java   |   6 +
 .../dictionary/IntOffHeapMutableDictionary.java    |   5 +
 .../dictionary/IntOnHeapMutableDictionary.java     |   6 +
 .../dictionary/LongOffHeapMutableDictionary.java   |   5 +
 .../dictionary/LongOnHeapMutableDictionary.java    |   6 +
 .../dictionary/StringOffHeapMutableDictionary.java |   6 +
 .../dictionary/StringOnHeapMutableDictionary.java  |   6 +
 .../segment/index/readers/BytesDictionary.java     |   8 +-
 .../readers/ConstantValueBytesDictionary.java      |   6 +
 .../readers/ConstantValueDoubleDictionary.java     |   8 +
 .../readers/ConstantValueFloatDictionary.java      |   8 +
 .../index/readers/ConstantValueIntDictionary.java  |   8 +
 .../index/readers/ConstantValueLongDictionary.java |   8 +
 .../readers/ConstantValueStringDictionary.java     |   6 +
 .../core/segment/index/readers/Dictionary.java     |   7 +
 .../segment/index/readers/DocIdDictionary.java     |   8 +
 .../segment/index/readers/DoubleDictionary.java    |   6 +
 .../segment/index/readers/FloatDictionary.java     |   6 +
 .../core/segment/index/readers/IntDictionary.java  |   6 +
 .../core/segment/index/readers/LongDictionary.java |   6 +
 .../index/readers/OnHeapDoubleDictionary.java      |   6 +
 .../index/readers/OnHeapFloatDictionary.java       |   6 +
 .../segment/index/readers/OnHeapIntDictionary.java |   6 +
 .../index/readers/OnHeapLongDictionary.java        |   6 +
 .../index/readers/OnHeapStringDictionary.java      |   8 +-
 .../segment/index/readers/StringDictionary.java    |   8 +-
 .../pinot/core/util/FixedIntArrayOffHeapIdMap.java |   6 +
 .../pinot/queries/DistinctCountQueriesTest.java    | 263 +++++++++++++++++++++
 36 files changed, 524 insertions(+), 11 deletions(-)
 create mode 100644 pinot-core/src/test/java/org/apache/pinot/queries/DistinctCountQueriesTest.java


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@pinot.apache.org
For additional commands, e-mail: commits-help@pinot.apache.org