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

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


 discard 1fabecc  Address comments
 discard e3392d7  Support Selection Literal only queries
     add 957b28d  Moved StreamPartitionMsgOffset to be an interface (#5506)
     add 2b09676  One to many records from record reader/decoder (#5430)
     add 15fda7f  Update Pinot quickstart to use sql mode (#5530)
     add 5b3837c  Adding github actions for pinot tests (#5512)
     add 89c1eff  Support Selection Literal only queries
     add c1da5c0  Address comments

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   (1fabecc)
            \
             N -- N -- N   refs/heads/pinot_query_literal_only (c1da5c0)

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/pinot_tests.yml                  |  78 +++++
 .../workflows/scripts/.pinot_quickstart.sh         |  49 ++-
 .../workflows/scripts/.pinot_test.sh               |  44 +--
 .../requesthandler/BaseBrokerRequestHandler.java   |  24 +-
 .../LiteralOnlyBrokerRequestTest.java              |  11 +
 .../protocols/SegmentCompletionProtocol.java       |  38 +--
 .../pinot/sql/parsers/CalciteSqlCompilerTest.java  |   4 +-
 .../resources/LLCSegmentCompletionHandlers.java    |  15 +-
 .../realtime/PinotLLCRealtimeSegmentManager.java   |  22 +-
 .../core/realtime/SegmentCompletionManager.java    |  83 +++--
 .../segment/CommittingSegmentDescriptor.java       |  10 +-
 .../api/SegmentCompletionProtocolDeserTest.java    |  21 +-
 .../PinotLLCRealtimeSegmentManagerTest.java        |  20 +-
 .../helix/core/realtime/SegmentCompletionTest.java | 341 ++++++++++++---------
 .../segment/FlushThresholdUpdaterTest.java         |   3 +-
 .../realtime/HLRealtimeSegmentDataManager.java     |   3 +-
 .../realtime/LLRealtimeSegmentDataManager.java     |  96 ++++--
 .../realtime/SegmentBuildTimeLeaseExtender.java    |   2 +-
 .../RecordReaderSegmentCreationDataSource.java     |  22 +-
 .../impl/SegmentIndexCreationDriverImpl.java       |  38 ++-
 .../realtime/LLRealtimeSegmentDataManagerTest.java | 117 +++++--
 .../impl/fakestream/FakeStreamConsumerFactory.java |   2 +-
 .../core/realtime/stream/StreamConfigTest.java     |   2 +
 .../SegmentGenerationWithMultipleRecordsKey.java   | 111 +++++++
 .../tests/SegmentCompletionIntegrationTest.java    |   3 +-
 .../kafka20/KafkaPartitionLevelConsumerTest.java   |   2 +-
 .../apache/pinot/spi/data/readers/GenericRow.java  |   3 +
 .../org/apache/pinot/spi/stream/LongMsgOffset.java |  39 +--
 .../pinot/spi/stream/LongMsgOffsetFactory.java     |  30 +-
 .../pinot/spi/stream/PartitionCountFetcher.java    |   2 +-
 .../pinot/spi/stream/PartitionLevelConsumer.java   |   6 +
 .../pinot/spi/stream/PartitionOffsetFetcher.java   |   2 +-
 .../org/apache/pinot/spi/stream/StreamConfig.java  |  12 +
 .../pinot/spi/stream/StreamConfigProperties.java   |   1 +
 .../spi/stream/StreamConsumerFactoryProvider.java  |  19 +-
 .../pinot/spi/stream/StreamPartitionMsgOffset.java |  43 +--
 ...a.java => StreamPartitionMsgOffsetFactory.java} |  26 +-
 .../org/apache/pinot/tools/HybridQuickstart.java   |   8 +-
 .../java/org/apache/pinot/tools/Quickstart.java    |  29 +-
 .../org/apache/pinot/tools/RealtimeQuickStart.java |   8 +-
 .../tools/admin/command/QuickstartRunner.java      |   4 +-
 41 files changed, 913 insertions(+), 480 deletions(-)
 create mode 100644 .github/workflows/pinot_tests.yml
 copy .travis/.travis_quickstart.sh => 
.github/workflows/scripts/.pinot_quickstart.sh (62%)
 copy .travis/.travis_test.sh => .github/workflows/scripts/.pinot_test.sh (54%)
 create mode 100644 
pinot-core/src/test/java/org/apache/pinot/core/segment/index/creator/SegmentGenerationWithMultipleRecordsKey.java
 copy 
pinot-common/src/main/java/org/apache/pinot/pql/parsers/pql2/ast/LimitAstNode.java
 => pinot-spi/src/main/java/org/apache/pinot/spi/stream/LongMsgOffset.java (59%)
 copy 
pinot-core/src/test/java/org/apache/pinot/core/realtime/impl/fakestream/FakeStreamLevelConsumer.java
 => 
pinot-spi/src/main/java/org/apache/pinot/spi/stream/LongMsgOffsetFactory.java 
(60%)
 copy pinot-spi/src/main/java/org/apache/pinot/spi/stream/{RowMetadata.java => 
StreamPartitionMsgOffsetFactory.java} (57%)


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

Reply via email to