Skip to content

Commit 70ff48f

Browse files
author
yuzelin
committed
fix
1 parent d6fc984 commit 70ff48f

File tree

3 files changed

+10
-7
lines changed

3 files changed

+10
-7
lines changed

.github/workflows/check-java-bridge-licensing.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,14 +40,14 @@ jobs:
4040
- name: Build
4141
run: |
4242
set -o pipefail
43-
cd paimon_python_java/paimon-python-java-bridge
43+
cd pypaimon/py4j/paimon-python-java-bridge
4444
mvn clean deploy ${{ env.MVN_COMMON_OPTIONS }} -DskipTests \
4545
-DaltDeploymentRepository=validation_repository::default::file:${{ env.MVN_VALIDATION_DIR }} \
4646
| tee ${{ env.MVN_BUILD_OUTPUT_FILE }}
4747
4848
- name: Check licensing
4949
run: |
50-
cd paimon_python_java/paimon-python-java-bridge
50+
cd pypaimon/py4j/paimon-python-java-bridge
5151
mvn ${{ env.MVN_COMMON_OPTIONS }} exec:java@check-licensing -N \
5252
-Dexec.args="${{ env.MVN_BUILD_OUTPUT_FILE }} $(pwd) ${{ env.MVN_VALIDATION_DIR }}" \
5353
-Dlog4j.configurationFile=file://$(pwd)/tools/ci/log4j.properties

pypaimon/py4j/__init__.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,10 @@
1717
################################################################################
1818

1919
from .util import constants
20-
from .java_implementation import (Catalog, Table, ReadBuilder, TableScan, Plan, Split, TableRead,
21-
BatchWriteBuilder, BatchTableWrite, CommitMessage, BatchTableCommit,
22-
Predicate, PredicateBuilder)
20+
from .java_implementation import \
21+
(Catalog, Table, ReadBuilder, TableScan, Plan, Split,
22+
TableRead, BatchWriteBuilder, BatchTableWrite, CommitMessage,
23+
BatchTableCommit, Predicate, PredicateBuilder)
2324

2425
__all__ = [
2526
'constants',

pypaimon/py4j/java_implementation.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,10 @@
2626
from duckdb.duckdb import DuckDBPyConnection
2727
from pypaimon.py4j.java_gateway import get_gateway
2828
from pypaimon.py4j.util import java_utils, constants
29-
from pypaimon.api import (catalog, table, read_builder, table_scan, split, table_read, write_builder,
30-
table_write, commit_message, table_commit, Schema, predicate)
29+
from pypaimon.api import \
30+
(catalog, table, read_builder, table_scan, split,
31+
table_read, write_builder, table_write, commit_message,
32+
table_commit,Schema, predicate)
3133
from typing import List, Iterator, Optional, Any
3234

3335

0 commit comments

Comments
 (0)