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

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


 discard f45a712  [TE] alerts search and pagination endpoint
     add 9b65c9e  Do not release the PinotDataBuffer when closing the index 
(#5400)
     add 3453128  Removes redundant DateTimeFormatter cache in DateTimeHandler 
(#5405)
     new dc2e563  [TE] alerts search and pagination endpoint

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   (f45a712)
            \
             N -- N -- N   refs/heads/alerts-pagination (dc2e563)

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.

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .../core/data/function/DateTimeFunctions.java      | 11 +--
 .../core/data/function/DateTimePatternHandler.java | 19 ++---
 .../data/function/FunctionEvaluatorFactory.java    | 10 +--
 .../pinot/core/data/function/FunctionRegistry.java | 84 ++++++++++++++++++++
 .../data/function/FunctionRegistryFactory.java     | 81 --------------------
 .../data/function/InbuiltFunctionEvaluator.java    |  6 +-
 .../data/function/InbuiltFunctionRegistry.java     | 55 -------------
 .../recordtransformer/ExpressionTransformer.java   |  4 +-
 .../immutable/ImmutableSegmentImpl.java            | 38 +++------
 .../indexsegment/mutable/MutableSegmentImpl.java   | 27 ++++---
 .../impl/FixedByteSingleValueMultiColReader.java   | 89 ++++++++--------------
 .../reader/impl/v1/BaseChunkSingleValueReader.java | 46 +++++------
 .../reader/impl/v1/FixedBitMultiValueReader.java   |  9 +--
 .../reader/impl/v1/FixedBitSingleValueReader.java  |  4 +-
 ...ixedByteSingleColumnMultiValueReaderWriter.java | 89 +++++++++-------------
 ...xedByteSingleColumnSingleValueReaderWriter.java | 30 +++-----
 ...ixedByteSingleValueMultiColumnReaderWriter.java | 24 ++----
 .../core/io/util/FixedBitIntReaderWriter.java      | 20 +----
 .../core/io/util/FixedByteValueReaderWriter.java   | 24 ++----
 .../apache/pinot/core/io/util/PinotDataBitSet.java |  7 +-
 .../org/apache/pinot/core/io/util/ValueReader.java |  7 +-
 .../io/util/VarLengthBytesValueReaderWriter.java   | 10 +--
 .../impl/FixedByteSingleValueMultiColWriter.java   | 87 ++++++++++-----------
 .../writer/impl/MutableOffHeapByteArrayStore.java  | 14 ++--
 .../writer/impl/v1/BaseChunkSingleValueWriter.java |  1 -
 .../dictionary/BaseOffHeapMutableDictionary.java   | 24 +-----
 .../segment/index/column/ColumnIndexContainer.java |  3 +-
 .../index/column/PhysicalColumnIndexContainer.java | 15 ++++
 .../core/segment/index/loader/LoaderUtils.java     |  8 +-
 .../index/readers/BitmapInvertedIndexReader.java   | 37 ++++-----
 .../index/readers/NullValueVectorReaderImpl.java   |  6 +-
 .../segment/index/readers/RangeIndexReader.java    | 60 +++++++--------
 .../pinot/core/segment/memory/PinotByteBuffer.java |  3 -
 .../virtualcolumn/VirtualColumnIndexContainer.java | 13 ++++
 .../apache/pinot/core/startree/v2/StarTreeV2.java  |  3 +-
 .../core/startree/v2/store/StarTreeDataSource.java |  3 +-
 .../startree/v2/store/StarTreeLoaderUtils.java     | 10 +++
 .../pinot/core/util/FixedIntArrayOffHeapIdMap.java | 11 ---
 .../java/org/apache/pinot/core/util/IdMap.java     | 10 +--
 .../org/apache/pinot/core/util/SchemaUtils.java    |  6 +-
 .../function/DateTimeFunctionEvaluatorTest.java    |  7 +-
 .../function/InbuiltFunctionEvaluatorTest.java     | 27 ++++---
 .../pinot/core/io/util/PinotDataBitSetTest.java    | 19 +++--
 .../index/loader/SegmentPreProcessorTest.java      |  9 +--
 .../store/ColumnIndexDirectoryTestHelper.java      | 30 ++++----
 .../segment/store/FilePerIndexDirectoryTest.java   | 73 +++++++-----------
 .../store/SingleFileIndexDirectoryTest.java        | 85 +++++++--------------
 .../v1/creator/FixedIntArrayIdMapTest.java         | 22 +-----
 .../tests/BaseClusterIntegrationTest.java          |  2 +-
 pom.xml                                            |  2 +-
 50 files changed, 505 insertions(+), 779 deletions(-)
 create mode 100644 
pinot-core/src/main/java/org/apache/pinot/core/data/function/FunctionRegistry.java
 delete mode 100644 
pinot-core/src/main/java/org/apache/pinot/core/data/function/FunctionRegistryFactory.java
 delete mode 100644 
pinot-core/src/main/java/org/apache/pinot/core/data/function/InbuiltFunctionRegistry.java


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

Reply via email to