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

xiangfu0 pushed a change to branch 
xiangfu0/codex/codec-stack/07-integration-docs
in repository https://gitbox.apache.org/repos/asf/pinot.git


 discard 4f0c32d49c6 Add codec pipeline integration tests and design doc
 discard 37dd99f682e Support codecSpec on segment reload and enable codecSpec 
end to end
 discard 04dd66f45c6 Add V7 raw forward index format for codec pipelines
 discard 7014dcce192 Add T64 and GORILLA packing transform codecs
 discard 6de5c072ab6 Add DELTA and DELTADELTA transform codecs
 discard 2c642618152 Harden Snappy decode bounds, reserve CODEC in the 
registry, reject ZSTD(0)
 discard 4cd62f6dda3 Add bounded codec runtime and compression handlers
 discard b34537f3198 Document why the codec DSL is not parsed by the SQL 
expression parser
 discard 4e20bcc6b42 Pin codec DSL equality and limit symmetry with tests
 discard 1da60292c1c Reject leading-zero codec arguments and tighten the spec 
length cap
 discard 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
     add f41789af4f1 Add bounded codec runtime and compression handlers
     add bb596e66c96 Harden Snappy decode bounds, reserve CODEC in the 
registry, reject ZSTD(0)
     add 432f34d4110 Add DELTA and DELTADELTA transform codecs
     add bdc7c330979 Add T64 and GORILLA packing transform codecs
     add 669848ce4a9 Add V7 raw forward index format for codec pipelines
     add aedae05dd94 Support codecSpec on segment reload and enable codecSpec 
end to end
     add c8810abb269 Add codec pipeline integration tests and design doc

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   (4f0c32d49c6)
            \
             N -- N -- N   
refs/heads/xiangfu0/codex/codec-stack/07-integration-docs (c8810abb269)

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]

Reply via email to