This is an automated email from the ASF dual-hosted git repository.
jlli pushed a change to branch bump-up-zk-version
in repository https://gitbox.apache.org/repos/asf/pinot.git
omit 19fe535f72 Bump up ZK version to 3.6.3
add 4935326785 [multistage] refactor traversals of stage nodes into
visitor pattern (#9560)
add edf0c01be0 Fix NonAggregationGroupByToDistinctQueryRewriter (#9605)
add 8303f92936 Bump up ZK version to 3.6.3
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 (19fe535f72)
\
N -- N -- N refs/heads/bump-up-zk-version (8303f92936)
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:
...nAggregationGroupByToDistinctQueryRewriter.java | 70 ++++---
.../pinot/sql/parsers/CalciteSqlCompilerTest.java | 39 ++--
...regationGroupByToDistinctQueryRewriterTest.java | 160 +++------------
.../tests/OfflineClusterIntegrationTest.java | 12 +-
.../query/planner/ExplainPlanStageVisitor.java | 224 +++++++++++++++++++++
.../org/apache/pinot/query/planner/QueryPlan.java | 60 +-----
.../apache/pinot/query/planner/StageMetadata.java | 7 +
.../planner/logical/ShuffleRewriteVisitor.java | 192 ++++++++++++++++++
.../planner/logical/StageMetadataVisitor.java | 132 ++++++++++++
.../pinot/query/planner/logical/StagePlanner.java | 171 +++-------------
.../query/planner/stage/AbstractStageNode.java | 15 --
.../pinot/query/planner/stage/AggregateNode.java | 5 +
.../pinot/query/planner/stage/FilterNode.java | 5 +
.../apache/pinot/query/planner/stage/JoinNode.java | 5 +
.../query/planner/stage/MailboxReceiveNode.java | 23 ++-
.../pinot/query/planner/stage/MailboxSendNode.java | 11 +-
.../pinot/query/planner/stage/ProjectNode.java | 5 +
.../apache/pinot/query/planner/stage/SortNode.java | 5 +
.../pinot/query/planner/stage/StageNode.java | 8 +-
.../query/planner/stage/StageNodeVisitor.java | 57 ++++++
.../pinot/query/planner/stage/TableScanNode.java | 5 +
.../pinot/query/planner/stage/ValueNode.java | 5 +
.../pinot/query/mailbox/GrpcMailboxService.java | 5 +
.../query/runtime/blocks/TransferableBlock.java | 2 +-
.../runtime/executor/PhysicalPlanVisitor.java | 149 ++++++++++++++
.../runtime/executor/WorkerQueryExecutor.java | 79 +-------
.../query/runtime/operator/AggregateOperator.java | 4 +-
.../query/runtime/operator/FilterOperator.java | 4 +-
.../query/runtime/operator/HashJoinOperator.java | 8 +-
.../runtime/operator/MailboxReceiveOperator.java | 7 +
.../runtime/operator/MailboxSendOperator.java | 4 +-
.../pinot/query/runtime/operator/SortOperator.java | 4 +-
.../query/runtime/operator/TransformOperator.java | 4 +-
pinot-tools/src/test/resources/queries.raw | 2 +-
34 files changed, 987 insertions(+), 501 deletions(-)
create mode 100644
pinot-query-planner/src/main/java/org/apache/pinot/query/planner/ExplainPlanStageVisitor.java
create mode 100644
pinot-query-planner/src/main/java/org/apache/pinot/query/planner/logical/ShuffleRewriteVisitor.java
create mode 100644
pinot-query-planner/src/main/java/org/apache/pinot/query/planner/logical/StageMetadataVisitor.java
create mode 100644
pinot-query-planner/src/main/java/org/apache/pinot/query/planner/stage/StageNodeVisitor.java
create mode 100644
pinot-query-runtime/src/main/java/org/apache/pinot/query/runtime/executor/PhysicalPlanVisitor.java
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]