You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by lz...@apache.org on 2022/07/01 08:17:09 UTC

[flink-table-store] branch master updated (e303ec7a -> 0688ce66)

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

lzljs3620320 pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/flink-table-store.git


    from e303ec7a [FLINK-28339] Introduce SparkCatalog in table store
     add 0688ce66 [FLINK-28064] Predicate now accepts null literals

No new revisions were added by this update.

Summary of changes:
 flink-table-store-codegen/pom.xml                  |  19 ++++
 .../flink/table/store/file/predicate/Equal.java    |   9 +-
 .../table/store/file/predicate/GreaterOrEqual.java |   9 +-
 .../table/store/file/predicate/GreaterThan.java    |   7 +-
 .../table/store/file/predicate/IsNotNull.java      |   2 +-
 .../flink/table/store/file/predicate/IsNull.java   |   2 +-
 .../table/store/file/predicate/LessOrEqual.java    |   9 +-
 .../flink/table/store/file/predicate/LessThan.java |   9 +-
 .../flink/table/store/file/predicate/NotEqual.java |   9 +-
 ...ction.java => NullFalseLeafBinaryFunction.java} |   8 +-
 .../store/file/predicate/PredicateBuilder.java     |   4 +-
 .../store/file/predicate/PredicateConverter.java   |  51 +++++-----
 .../table/store/file/predicate/StartsWith.java     |  12 +--
 .../store/file/predicate/PredicateBuilderTest.java | 109 +++++++++++++++++++++
 .../file/predicate/PredicateConverterTest.java     |  38 +++++++
 .../table/store/file/predicate/PredicateTest.java  | 108 ++++++++++++++++++++
 .../flink-table-store-hive-connector/pom.xml       |  30 +++---
 .../SearchArgumentToPredicateConverterTest.java    |  27 +++++
 .../hive/TableStoreHiveStorageHandlerITCase.java   |   7 ++
 .../store/spark/SparkFilterConverterTest.java      |  25 +++++
 pom.xml                                            |  11 ---
 21 files changed, 408 insertions(+), 97 deletions(-)
 rename flink-table-store-core/src/main/java/org/apache/flink/table/store/file/predicate/{LeafBinaryFunction.java => NullFalseLeafBinaryFunction.java} (85%)