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

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


    omit d251cca93c5 Pin packing codec wire byte order
    omit 1d1b651b54f Harden packing codec frames and allocations
    omit 4dcc8d16a94 Add T64 and GORILLA packing transform codecs
    omit e4af8ac902b Make delta wire decoding byte-order independent
    omit 968323c3252 Add stable delta codec decode fixtures
    omit 7204585a04b Add DELTA and DELTADELTA transform codecs
    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 b18c96d4956 Clean up stale star-tree index leftover from killed prior 
build (#19331)
     add 081a013e4f1 Add safe SQL quoting for typed table names (#19327)
     add 899e40d874d Dispatch aggregation value getters on the stored type, and 
add the missing numeric types (#19334)
     add 28dbb9eb655 Add bounded codec runtime and compression handlers
     add c13ad2b24c3 Harden Snappy decode bounds, reserve CODEC in the 
registry, reject ZSTD(0)
     add d52dd4751f0 Address codec runtime review feedback
     add dfbc189c6dd Add DELTA and DELTADELTA transform codecs
     add c1023f7ad91 Add stable delta codec decode fixtures
     add 489c6aeceb5 Make delta wire decoding byte-order independent
     add e24dce3763e Add T64 and GORILLA packing transform codecs
     add ad27288eb6c Harden packing codec frames and allocations
     add 3129e004590 Pin packing codec wire byte order

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   (d251cca93c5)
            \
             N -- N -- N   refs/heads/xiangfu0/codex/codec-stack/04-t64-gorilla 
(3129e004590)

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:
 .../pinot/sql/parsers/CalciteSqlCompilerTest.java  |  14 +
 .../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/TimeSeriesAggregationFunction.java    |  16 +-
 .../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 | 164 ++++---
 .../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/StoredTypeDispatchTest.java           | 255 ++++++++++
 .../function/ValueAggregationNullHandlingTest.java | 453 +++++++++++++++++
 .../function/funnel/FunnelNullHandlingTest.java    | 233 +++++++++
 .../apache/pinot/queries/ArrayAggQueriesTest.java  |  70 ++-
 .../segment/index/forward/ForwardIndexType.java    |  17 +-
 .../startree/v2/builder/MultipleTreesBuilder.java  |  13 +
 .../index/forward/ForwardIndexTypeTest.java        |  73 ---
 .../MultipleTreesBuilderStaleCleanupTest.java      | 163 +++++++
 .../segment/spi/index/ForwardIndexConfig.java      |   7 +-
 .../TrackingScope.java => utils/SqlUtils.java}     |  20 +-
 .../pinot/spi/utils/TimestampIndexUtils.java       |   2 +-
 .../pinot/spi/utils/builder/TableNameBuilder.java  |  42 ++
 .../{Utf8UtilsTest.java => SqlUtilsTest.java}      |  18 +-
 .../pinot/spi/utils/TimestampIndexUtilsTest.java   |  17 +
 .../spi/utils/builder/TableNameBuilderTest.java    |  41 ++
 .../pinot/sql/ddl/reverse/SqlIdentifiers.java      |   3 +-
 pom.xml                                            |   2 +-
 51 files changed, 3462 insertions(+), 776 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/StoredTypeDispatchTest.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
 create mode 100644 
pinot-segment-local/src/test/java/org/apache/pinot/segment/local/startree/v2/builder/MultipleTreesBuilderStaleCleanupTest.java
 copy 
pinot-spi/src/main/java/org/apache/pinot/spi/{accounting/TrackingScope.java => 
utils/SqlUtils.java} (60%)
 copy pinot-spi/src/test/java/org/apache/pinot/spi/utils/{Utf8UtilsTest.java => 
SqlUtilsTest.java} (63%)


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

Reply via email to