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

jark pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/fluss.git


    from 4345663fe [server] Use unified batch-concurrent implementation for 
ZooKeeper operations and remove redundant code
     new a688465f3 [flink] Support general predicates for partition pushdown in 
Flink Connector (#420)
     new 680ca7e69 [flink] Improve the implementation for general predicates 
partition pushdown and fix bugs

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 LICENSE                                            |   1 +
 .../java/org/apache/fluss/predicate/Contains.java  |   4 +-
 .../java/org/apache/fluss/predicate/EndsWith.java  |   5 +-
 .../org/apache/fluss/predicate/LeafPredicate.java  |   4 -
 .../fluss/predicate/PartitionPredicateVisitor.java |   5 +-
 .../org/apache/fluss/predicate/SimpleColStats.java |  87 +++
 .../org/apache/fluss/predicate/StartsWith.java     |   5 +-
 .../java/org/apache/fluss/utils/TypeUtils.java     |   6 +
 .../org/apache/fluss/predicate/PredicateTest.java  |   6 +-
 .../fluss/predicate/SimpleColStatsTestUtils.java   |  31 +-
 .../flink/source/Flink118TableSourceITCase.java    |  11 +-
 .../org/apache/fluss/flink/source/FlinkSource.java |  20 +-
 .../fluss/flink/source/FlinkTableSource.java       | 117 ++--
 .../org/apache/fluss/flink/source/FlussSource.java |   4 +-
 .../source/enumerator/FlinkSourceEnumerator.java   | 105 ++--
 .../fluss/flink/utils/PredicateConverter.java      | 326 +++++++++++
 .../flink/utils/StringifyPredicateVisitor.java     |  72 +++
 .../fluss/flink/source/FlinkTableSourceITCase.java | 271 +++++++++-
 .../enumerator/FlinkSourceEnumeratorTest.java      |  16 +-
 .../apache/fluss/flink/utils/FlinkTestBase.java    |   2 +-
 .../fluss/flink/utils/PredicateConverterTest.java  | 597 +++++++++++++++++++++
 website/docs/engine-flink/reads.md                 |  21 +-
 website/src/css/custom.css                         |  12 +-
 23 files changed, 1563 insertions(+), 165 deletions(-)
 create mode 100644 
fluss-common/src/main/java/org/apache/fluss/predicate/SimpleColStats.java
 copy 
fluss-server/src/main/java/org/apache/fluss/server/coordinator/event/NotifyKvSnapshotOffsetEvent.java
 => 
fluss-common/src/test/java/org/apache/fluss/predicate/SimpleColStatsTestUtils.java
 (52%)
 create mode 100644 
fluss-flink/fluss-flink-common/src/main/java/org/apache/fluss/flink/utils/PredicateConverter.java
 create mode 100644 
fluss-flink/fluss-flink-common/src/main/java/org/apache/fluss/flink/utils/StringifyPredicateVisitor.java
 create mode 100644 
fluss-flink/fluss-flink-common/src/test/java/org/apache/fluss/flink/utils/PredicateConverterTest.java

Reply via email to