This is an automated email from the ASF dual-hosted git repository.
yuzelin pushed a change to branch release-0.1
in repository https://gitbox.apache.org/repos/asf/paimon-python.git
from c973a50 Add release tools (#21)
new 46d44da [hotfix] Fix runtime exception on windows (#23)
new cbb81bb Read interface support predicate (#22)
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:
.github/workflows/paimon-python-checks.yml | 7 +
paimon_python_api/__init__.py | 5 +-
paimon_python_api/predicate.py | 95 +++++
paimon_python_api/read_builder.py | 13 +-
paimon_python_java/__init__.py | 7 +-
paimon_python_java/gateway_server.py | 3 +-
paimon_python_java/java_gateway.py | 1 +
.../org/apache/paimon/python/PredicationUtil.java | 111 ++++++
paimon_python_java/pypaimon.py | 103 +++++-
paimon_python_java/tests/test_preicates.py | 394 +++++++++++++++++++++
paimon_python_java/tests/utils.py | 5 +
11 files changed, 736 insertions(+), 8 deletions(-)
create mode 100644 paimon_python_api/predicate.py
create mode 100644
paimon_python_java/paimon-python-java-bridge/src/main/java/org/apache/paimon/python/PredicationUtil.java
create mode 100644 paimon_python_java/tests/test_preicates.py