This is an automated email from the ASF dual-hosted git repository.
xiangfu0 pushed a change to branch xiangfu0/codex/codec-stack/01-config
in repository https://gitbox.apache.org/repos/asf/pinot.git
omit b34537f3198 Document why the codec DSL is not parsed by the SQL
expression parser
omit 4e20bcc6b42 Pin codec DSL equality and limit symmetry with tests
omit 1da60292c1c Reject leading-zero codec arguments and tighten the spec
length cap
omit 375716a9a07 Add codec spec DSL and configuration plumbing
add 82ccd9e4255 Fix flaky UpsertTableSegmentPreloadIntegrationTest by
verifying snapshots only for uploaded segments (#19319)
add a60eae69f06 Compute star-tree record offsets arithmetically for
fixed-size records (#19318)
add 37d1b5115a4 Bump com.github.luben:zstd-jni from 1.5.7-14 to 1.5.7-15
(#19320)
add 8e7c42cc874 Bump docker/setup-buildx-action from 4.2.0 to 4.3.0
(#19321)
add 56de9c385d1 Bump com.fasterxml.jackson:jackson-bom from 2.22.1 to
2.22.2 (#19322)
add 2ae7195ea43 Add unit tests for FSTIndexHandler legacy-FST detection
and index lifecycle (#18960)
add 7adf93f40ab Null handling for the sketch-backed distinct counts, plus
a filtered DISTINCTCOUNTTHETASKETCH group-by MV fix (#19316)
add f8352be252f Preserve aggregate hints through ProjectAggregateMergeRule
(#19324)
add 5cbbe1b53ef Add codec spec DSL and configuration plumbing
add 240b090de3c Reject leading-zero codec arguments and tighten the spec
length cap
add 2d9d6c1ecb4 Pin codec DSL equality and limit symmetry with tests
add ba1a944cd4c Document why the codec DSL is not parsed by the SQL
expression parser
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version. This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:
* -- * -- B -- O -- O -- O (b34537f3198)
\
N -- N -- N refs/heads/xiangfu0/codex/codec-stack/01-config
(ba1a944cd4c)
You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.
Any revisions marked "omit" are not gone; other references still
refer to them. Any revisions marked "discard" are gone forever.
No new revisions were added by this update.
Summary of changes:
.github/workflows/build-pinot-docker-image.yml | 2 +-
.github/workflows/build-superset-docker-image.yml | 2 +-
...htly-build-multi-arch-superset-docker-image.yml | 4 +-
.../function/AggregationFunctionFactory.java | 42 +-
...istinctCountSmartSketchAggregationFunction.java | 376 +++--
.../DistinctCountBitmapAggregationFunction.java | 497 ++++---
.../DistinctCountBitmapMVAggregationFunction.java | 4 +-
.../DistinctCountCPCSketchAggregationFunction.java | 323 ++--
.../DistinctCountHLLAggregationFunction.java | 555 ++++---
.../DistinctCountHLLMVAggregationFunction.java | 4 +-
.../DistinctCountHLLPlusAggregationFunction.java | 545 ++++---
.../DistinctCountHLLPlusMVAggregationFunction.java | 4 +-
...stinctCountRawCPCSketchAggregationFunction.java | 5 +-
.../DistinctCountRawHLLAggregationFunction.java | 11 +-
.../DistinctCountRawHLLMVAggregationFunction.java | 5 +-
...DistinctCountRawHLLPlusAggregationFunction.java | 11 +-
...stinctCountRawHLLPlusMVAggregationFunction.java | 5 +-
...inctCountRawThetaSketchAggregationFunction.java | 5 +-
.../DistinctCountRawULLAggregationFunction.java | 4 +-
.../DistinctCountSmartHLLAggregationFunction.java | 130 +-
...stinctCountSmartHLLPlusAggregationFunction.java | 112 +-
.../DistinctCountSmartULLAggregationFunction.java | 122 +-
...istinctCountThetaSketchAggregationFunction.java | 1560 +++++++++++---------
.../DistinctCountULLAggregationFunction.java | 546 ++++---
.../function/FastHLLAggregationFunction.java | 96 +-
.../FrequentLongsSketchAggregationFunction.java | 192 ++-
.../FrequentStringsSketchAggregationFunction.java | 71 +-
.../IntegerTupleSketchAggregationFunction.java | 104 +-
.../function/PercentileKLLAggregationFunction.java | 34 +-
...artitionedDistinctCountAggregationFunction.java | 571 ++++---
.../pinot/core/common/SyntheticBlockValSets.java | 76 +
.../AggregationFunctionNullContractTest.java | 18 +-
...tinctCountCPCSketchAggregationFunctionTest.java | 12 +-
.../DistinctCountHLLAggregationFunctionTest.java | 12 +-
...istinctCountHLLPlusAggregationFunctionTest.java | 8 +-
.../DistinctCountSketchNullHandlingTest.java | 279 ++++
...stinctCountSmartHLLAggregationFunctionTest.java | 41 +-
...nctCountThetaSketchAggregationFunctionTest.java | 93 +-
.../DistinctCountULLAggregationFunctionTest.java | 38 +-
.../function/FrequentSketchNullHandlingTest.java | 229 ++-
...tionedDistinctCountAggregationFunctionTest.java | 31 +-
.../UpsertTableSegmentPreloadIntegrationTest.java | 10 +-
.../BenchmarkDistinctCountHLLThreshold.java | 17 +-
.../rel/rules/PinotProjectAggregateMergeRule.java | 135 ++
.../calcite/rel/rules/PinotQueryRuleSets.java | 7 +-
.../apache/pinot/query/QueryCompilationTest.java | 49 +
.../v2/builder/OffHeapSingleTreeBuilder.java | 83 +-
.../loader/invertedindex/FSTIndexHandlerTest.java | 342 +++++
.../v2/builder/OffHeapSingleTreeBuilderTest.java | 18 +-
pom.xml | 4 +-
50 files changed, 4878 insertions(+), 2566 deletions(-)
create mode 100644
pinot-core/src/test/java/org/apache/pinot/core/query/aggregation/function/DistinctCountSketchNullHandlingTest.java
create mode 100644
pinot-query-planner/src/main/java/org/apache/pinot/calcite/rel/rules/PinotProjectAggregateMergeRule.java
create mode 100644
pinot-segment-local/src/test/java/org/apache/pinot/segment/local/segment/index/loader/invertedindex/FSTIndexHandlerTest.java
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]