This is an automated email from the ASF dual-hosted git repository.
jackie pushed a change to branch range_opt
in repository https://gitbox.apache.org/repos/asf/incubator-pinot.git.
omit 5fafcb0 Optimize all filter predicates by adding isAlwaysTrue()
add b03f7d0 Optimize all filter predicates by adding isAlwaysTrue()
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 (5fafcb0)
\
N -- N -- N refs/heads/range_opt (b03f7d0)
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:
.../docidsets/BitmapBasedBlockDocIdSet.java | 41 ---------
.../core/operator/filter/AndFilterOperator.java | 12 ++-
.../operator/filter/BitmapBasedFilterOperator.java | 10 ++-
.../core/operator/filter/FilterOperatorUtils.java | 63 +++++++++++++-
.../core/operator/filter/OrFilterOperator.java | 12 ++-
.../operator/filter/ScanBasedFilterOperator.java | 10 ++-
.../SortedInvertedIndexBasedFilterOperator.java | 10 ++-
.../BaseDictionaryBasedPredicateEvaluator.java | 10 +--
.../BaseRawValueBasedPredicateEvaluator.java | 4 +-
.../filter/predicate/PredicateEvaluator.java | 8 +-
.../linkedin/pinot/core/plan/FilterPlanNode.java | 37 +-------
.../startree/operator/StarTreeFilterOperator.java | 21 ++---
.../operator/filter/AndFilterOperatorTest.java | 27 +++---
.../operator/filter/FilterOperatorUtilsTest.java | 98 ++++++++++++++++++++++
.../{ => core}/operator/filter/IntRangesTest.java | 3 +-
.../operator/filter/OrFilterOperatorTest.java | 20 ++---
.../core/operator/filter/TestFilterOperator.java | 78 +++++++++++++++++
.../operator/filter/FilterOperatorTestUtils.java | 85 -------------------
...nerSegmentAggregationMultiValueQueriesTest.java | 12 +--
...InnerSegmentSelectionMultiValueQueriesTest.java | 6 +-
...terSegmentAggregationMultiValueQueriesTest.java | 32 +++----
...onaryAggregationPlanClusterIntegrationTest.java | 31 +------
.../com/linkedin/pinot/perf/RawIndexBenchmark.java | 2 +-
23 files changed, 349 insertions(+), 283 deletions(-)
delete mode 100644
pinot-core/src/main/java/com/linkedin/pinot/core/operator/docidsets/BitmapBasedBlockDocIdSet.java
rename pinot-core/src/test/java/com/linkedin/pinot/{ =>
core}/operator/filter/AndFilterOperatorTest.java (77%)
create mode 100644
pinot-core/src/test/java/com/linkedin/pinot/core/operator/filter/FilterOperatorUtilsTest.java
rename pinot-core/src/test/java/com/linkedin/pinot/{ =>
core}/operator/filter/IntRangesTest.java (96%)
rename pinot-core/src/test/java/com/linkedin/pinot/{ =>
core}/operator/filter/OrFilterOperatorTest.java (82%)
create mode 100644
pinot-core/src/test/java/com/linkedin/pinot/core/operator/filter/TestFilterOperator.java
delete mode 100644
pinot-core/src/test/java/com/linkedin/pinot/operator/filter/FilterOperatorTestUtils.java
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]