This is an automated email from the ASF dual-hosted git repository.
github-bot pushed a change to branch
dependabot/maven/com.microsoft.azure-msal4j-1.17.2
in repository https://gitbox.apache.org/repos/asf/pinot.git
discard 3f80ea3f54 Bump com.microsoft.azure:msal4j from 1.17.1 to 1.17.2
add dac174e6e3 Fix license headers in pinot-kafka-3.0 (#14112)
add 96abef8374 Add a server level config for segment server upload to deep
store. (#14093)
add b56585bd9b Bump log4j.version from 2.24.0 to 2.24.1 (#14116)
add b3721ac3f6 Bump org.mockito:mockito-core from 5.13.0 to 5.14.1 (#14119)
add 249d5ce37b Bump com.puppycrawl.tools:checkstyle from 10.18.1 to
10.18.2 (#14121)
add 4ba11e52a7 Part-5: Fix Offset Handling and Effective Time Filter +
Enable Group-By Expressions + Add Unit Tests and Minor Cleanup (#14104)
add f07685d170 #14095 update the contribution link (#14096)
add 3452ef9fa9 Improve Adaptive Server Selection to penalize servers
returning server side exceptions (#14029)
add 19b79f406c Polymorphic binary arithmetic scalar functions (#14089)
add 56ccbc3d5f Revert "Make ingestion offset delay metric configurable
(#14074)" (#14127)
add 8130f26449 Bump testcontainers.version from 1.20.1 to 1.20.2 (#14129)
add 8a227e06ab Bump com.nimbusds:nimbus-jose-jwt from 9.41.1 to 9.41.2
(#14131)
add f7521d52fb Bump com.azure:azure-sdk-bom from 1.2.27 to 1.2.28 (#14132)
add 7585bcef19 Bump com.google.errorprone:error_prone_annotations from
2.32.0 to 2.33.0 (#14133)
add 7a67a47800 Bump com.microsoft.azure:msal4j from 1.17.1 to 1.17.2
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 (3f80ea3f54)
\
N -- N -- N
refs/heads/dependabot/maven/com.microsoft.azure-msal4j-1.17.2 (7a67a47800)
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:
README.md | 2 +-
.../function/scalar/ArithmeticFunctions.java | 15 --
.../scalar/arithmetic/MinusScalarFunction.java | 66 ++++++++
.../scalar/arithmetic/MultScalarFunction.java | 66 ++++++++
.../scalar/arithmetic/PlusScalarFunction.java | 66 ++++++++
...PolymorphicBinaryArithmeticScalarFunction.java} | 40 ++---
.../scalar/comparison/EqualsScalarFunction.java | 4 +-
.../GreaterThanOrEqualScalarFunction.java | 9 +-
.../comparison/GreaterThanScalarFunction.java | 4 +-
.../comparison/LessThanOrEqualScalarFunction.java | 4 +-
.../scalar/comparison/LessThanScalarFunction.java | 4 +-
.../scalar/comparison/NotEqualsScalarFunction.java | 4 +-
.../common/request/context/TimeSeriesContext.java | 10 +-
.../pinot/sql/parsers/CalciteSqlCompilerTest.java | 24 +++
.../manager/realtime/IngestionDelayTracker.java | 153 ++++--------------
.../realtime/RealtimeSegmentDataManager.java | 5 +-
.../manager/realtime/RealtimeTableDataManager.java | 4 +-
.../manager/realtime/SegmentCommitterFactory.java | 10 +-
.../timeseries/TimeSeriesAggregationOperator.java | 5 +-
.../apache/pinot/core/plan/CombinePlanNode.java | 2 +-
.../apache/pinot/core/plan/TimeSeriesPlanNode.java | 2 +-
.../pinot/core/transport/AsyncQueryResponse.java | 37 ++++-
.../realtime/IngestionDelayTrackerTest.java | 13 +-
.../realtime/SegmentCommitterFactoryTest.java | 20 ++-
.../core/query/executor/QueryExecutorTest.java | 10 +-
.../PostAggregationFunctionTest.java | 4 +-
.../pinot/core/transport/QueryRoutingTest.java | 176 +++++++++++++++++++++
.../tests/OfflineClusterIntegrationTest.java | 151 +++++++++++-------
.../kafka30/KafkaStreamMetadataProvider.java | 6 +-
...tionLevelConsumerBackwardCompatibilityTest.java | 2 +-
.../kafka30/KafkaPartitionLevelConsumerTest.java | 3 +-
.../KafkaPartitionLevelStreamConfigTest.java | 9 +-
.../stream/kafka30/utils/MiniKafkaCluster.java | 1 +
.../pinot/calcite/sql/fun/PinotOperatorTable.java | 5 +-
.../resources/queries/LiteralEvaluationPlans.json | 4 +-
.../timeseries/PhysicalTimeSeriesPlanVisitor.java | 28 ++--
.../PhysicalTimeSeriesPlanVisitorTest.java | 80 ++++++++++
.../ExpressionTransformerTest.java | 2 +-
.../helix/HelixInstanceDataManagerConfig.java | 8 +
.../config/instance/InstanceDataManagerConfig.java | 2 +
.../org/apache/pinot/spi/stream/StreamConfig.java | 22 +--
.../tsdb/spi/plan/LeafTimeSeriesPlanNode.java | 32 ++--
.../tsdb/spi/plan/LeafTimeSeriesPlanNodeTest.java | 78 +++++++++
.../spi/plan/serde/TimeSeriesPlanSerdeTest.java | 4 +-
pom.xml | 14 +-
45 files changed, 873 insertions(+), 337 deletions(-)
create mode 100644
pinot-common/src/main/java/org/apache/pinot/common/function/scalar/arithmetic/MinusScalarFunction.java
create mode 100644
pinot-common/src/main/java/org/apache/pinot/common/function/scalar/arithmetic/MultScalarFunction.java
create mode 100644
pinot-common/src/main/java/org/apache/pinot/common/function/scalar/arithmetic/PlusScalarFunction.java
copy
pinot-common/src/main/java/org/apache/pinot/common/function/scalar/{comparison/PolymorphicComparisonScalarFunction.java
=> arithmetic/PolymorphicBinaryArithmeticScalarFunction.java} (56%)
create mode 100644
pinot-query-runtime/src/test/java/org/apache/pinot/query/runtime/timeseries/PhysicalTimeSeriesPlanVisitorTest.java
create mode 100644
pinot-timeseries/pinot-timeseries-spi/src/test/java/org/apache/pinot/tsdb/spi/plan/LeafTimeSeriesPlanNodeTest.java
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]