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

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


    omit e99c0e8400b Address codec runtime review feedback
    omit e8f70f4a100 Harden Snappy decode bounds, reserve CODEC in the 
registry, reject ZSTD(0)
    omit c9a7afc7197 Add bounded codec runtime and compression handlers
    omit 29eddbd4680 Centralize codec DSL syntax validation
    omit c7d3f5ed80f Address codec configuration review feedback
    omit e3e58f452a2 Document why the codec DSL is not parsed by the SQL 
expression parser
    omit 7fc32733919 Pin codec DSL equality and limit symmetry with tests
    omit 822620de9e1 Reject leading-zero codec arguments and tighten the spec 
length cap
    omit c7903e96037 Add codec spec DSL and configuration plumbing
     add 22a1be9d918 Fix stale docId attribution in ExpressionScanDocIdIterator 
under look-ahead projection operators (#19245)
     add 6322b44803b Bump software.amazon.awssdk:bom from 2.53.1 to 2.53.2 
(#19328)
     add 3c92923b82d Give the value-accumulating aggregations the query's null 
handling option, and add their missing multi-value paths (#19326)
     add 0d6f3d4d72d Support JSON and UUID data types in ARRAY_AGG (#19333)
     add 59c2883cf02 Give the funnel functions the query's null handling option 
(#19332)
     add cd4a8171a7a Bump brace-expansion in 
/pinot-controller/src/main/resources (#19335)
     add 210c2951e72 Add codec spec DSL and configuration plumbing (#19284)
     add 6dface2b94c Add bounded codec runtime and compression handlers
     add a33503a8abc Harden Snappy decode bounds, reserve CODEC in the 
registry, reject ZSTD(0)
     add 0049a3ce72f Address codec runtime review feedback

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   (e99c0e8400b)
            \
             N -- N -- N   refs/heads/xiangfu0/codex/codec-stack/02-runtime 
(0049a3ce72f)

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:
 .../src/main/resources/package-lock.json           |   6 +-
 .../core/operator/BitmapDocIdSetOperator.java      |   5 +
 .../pinot/core/operator/DocIdSetOperator.java      |   4 +
 .../pinot/core/operator/blocks/DocIdSetBlock.java  |   7 +
 .../ExpressionScanDocIdIterator.java               |  55 ++-
 .../aggregation/function/AggregationFunction.java  |  62 ++-
 .../function/AggregationFunctionFactory.java       |  39 +-
 .../function/FourthMomentAggregationFunction.java  |  87 ++--
 .../function/HistogramAggregationFunction.java     | 474 ++++++++++++++----
 .../function/IdSetAggregationFunction.java         | 537 ++++++++++++++-------
 .../function/StUnionAggregationFunction.java       | 148 +++++-
 .../function/array/ArrayAggBytesFunction.java      |   5 +-
 .../array/ArrayAggDistinctBytesFunction.java       |   5 +-
 .../function/array/BaseArrayAggBytesFunction.java  |  13 +-
 .../array/SumArrayDoubleAggregationFunction.java   |  63 ++-
 .../array/SumArrayLongAggregationFunction.java     |  64 ++-
 .../function/funnel/AggregationStrategy.java       | 158 ++++--
 .../function/funnel/BitmapAggregationStrategy.java |   4 +-
 .../FunnelCountAggregationFunctionFactory.java     |  12 +-
 .../FunnelCountSortedAggregationFunction.java      |   5 +-
 .../function/funnel/SortedAggregationStrategy.java |   4 +-
 .../funnel/ThetaSketchAggregationStrategy.java     |   4 +-
 .../window/FunnelBaseAggregationFunction.java      | 134 +++--
 .../FunnelCompleteCountAggregationFunction.java    |   4 +-
 ...unnelEventsFunctionEvalAggregationFunction.java | 151 ++++--
 .../window/FunnelMatchStepAggregationFunction.java |   4 +-
 .../window/FunnelMaxStepAggregationFunction.java   |   4 +-
 ...FunnelStepDurationStatsAggregationFunction.java |   4 +-
 .../pinot/core/common/SyntheticBlockValSets.java   | 295 +++++++++++
 .../ExpressionScanDocIdIteratorTest.java           | 303 ++++++++++++
 .../AggregationFunctionNullContractTest.java       | 102 +++-
 .../function/StUnionAggregationFunctionTest.java   |   4 +-
 .../function/ValueAggregationNullHandlingTest.java | 453 +++++++++++++++++
 .../function/funnel/FunnelNullHandlingTest.java    | 233 +++++++++
 .../apache/pinot/queries/ArrayAggQueriesTest.java  |  70 ++-
 .../segment/index/forward/ForwardIndexType.java    |  17 +-
 .../index/forward/ForwardIndexTypeTest.java        |  73 ---
 .../segment/spi/index/ForwardIndexConfig.java      |   7 +-
 pom.xml                                            |   2 +-
 39 files changed, 2868 insertions(+), 753 deletions(-)
 create mode 100644 
pinot-core/src/test/java/org/apache/pinot/core/operator/dociditerators/ExpressionScanDocIdIteratorTest.java
 create mode 100644 
pinot-core/src/test/java/org/apache/pinot/core/query/aggregation/function/ValueAggregationNullHandlingTest.java
 create mode 100644 
pinot-core/src/test/java/org/apache/pinot/core/query/aggregation/function/funnel/FunnelNullHandlingTest.java


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to