This is an automated email from the ASF dual-hosted git repository.
BiteTheDDDDt pushed a change to branch dev_runtime_partition_prune
in repository https://gitbox.apache.org/repos/asf/doris.git
discard fe71e9b7899 Merge upstream/master into dev_runtime_partition_prune
omit 9445bfa9da4 add TPartitionBoundary thrift definition
add 9bf0817dc3b fix: block type reset after dict filter (#63168)
add b96bb6b49be [fix](fe) Preserve narrowing datetimev2 casts in simplify
in predicate (#63343)
add 6be29ffaf96 : This is a combination of 16 commits.
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 (fe71e9b7899)
\
N -- N -- N refs/heads/dev_runtime_partition_prune (6be29ffaf96)
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:
be/src/exec/operator/olap_scan_operator.cpp | 78 ++
be/src/exec/operator/olap_scan_operator.h | 13 +
be/src/exec/operator/operator.h | 10 +
be/src/exec/operator/scan_operator.cpp | 49 +
be/src/exec/operator/scan_operator.h | 38 +-
.../runtime_filter_partition_pruner.cpp | 875 ++++++++++++
.../runtime_filter_partition_pruner.h | 163 +++
be/src/exec/scan/olap_scanner.cpp | 7 +
be/src/exec/scan/olap_scanner.h | 2 +
be/src/exec/scan/scanner.h | 4 +
be/src/exec/scan/scanner_scheduler.cpp | 3 +
be/src/format/parquet/vparquet_group_reader.cpp | 1 +
.../runtime_filter_partition_pruner_test.cpp | 451 ++++++
.../RuntimeFilterPartitionPruneClassifier.java | 295 ++++
.../glue/translator/RuntimeFilterTranslator.java | 54 +-
.../expression/rules/SimplifyInPredicate.java | 11 +-
.../org/apache/doris/planner/OlapScanNode.java | 170 ++-
.../org/apache/doris/planner/RuntimeFilter.java | 76 +
.../rules/expression/SimplifyInPredicateTest.java | 62 +-
gensrc/thrift/PlanNodes.thrift | 57 +-
.../test_simplify_in_predicate.out} | 3 +-
.../runtime_filter/rf_partition_pruning.out | 125 ++
.../test_simplify_in_predicate.groovy | 28 +
.../runtime_filter/rf_partition_pruning.groovy | 1474 ++++++++++++++++++++
.../rf_partition_pruning_type_matrix.groovy | 219 +++
25 files changed, 4228 insertions(+), 40 deletions(-)
create mode 100644
be/src/exec/runtime_filter/runtime_filter_partition_pruner.cpp
create mode 100644 be/src/exec/runtime_filter/runtime_filter_partition_pruner.h
create mode 100644
be/test/exec/runtime_filter/runtime_filter_partition_pruner_test.cpp
create mode 100644
fe/fe-core/src/main/java/org/apache/doris/nereids/glue/translator/RuntimeFilterPartitionPruneClassifier.java
copy regression-test/data/{trino_p0/sql/distinct/withDuplicates_order.out =>
nereids_syntax_p0/test_simplify_in_predicate.out} (77%)
create mode 100644
regression-test/data/query_p0/runtime_filter/rf_partition_pruning.out
create mode 100644
regression-test/suites/query_p0/runtime_filter/rf_partition_pruning.groovy
create mode 100644
regression-test/suites/query_p0/runtime_filter/rf_partition_pruning_type_matrix.groovy
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]