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

lzljs3620320 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/paimon.git


The following commit(s) were added to refs/heads/master by this push:
     new ad345fb8fe [test] Fix method visibility in CatalogTestBase (#6267)
ad345fb8fe is described below

commit ad345fb8fe30b1bafd46644f4aa8dae116d1e94d
Author: Jiajia Li <[email protected]>
AuthorDate: Tue Sep 16 22:31:08 2025 +0800

    [test] Fix method visibility in CatalogTestBase (#6267)
---
 .../src/test/java/org/apache/paimon/catalog/CatalogTestBase.java      | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/paimon-core/src/test/java/org/apache/paimon/catalog/CatalogTestBase.java 
b/paimon-core/src/test/java/org/apache/paimon/catalog/CatalogTestBase.java
index 7222f0df6c..0e0370a5df 100644
--- a/paimon-core/src/test/java/org/apache/paimon/catalog/CatalogTestBase.java
+++ b/paimon-core/src/test/java/org/apache/paimon/catalog/CatalogTestBase.java
@@ -583,7 +583,7 @@ public abstract class CatalogTestBase {
 
     @ParameterizedTest
     @ValueSource(booleans = {true, false})
-    void testFormatTableRead(boolean partitioned) throws Exception {
+    public void testFormatTableRead(boolean partitioned) throws Exception {
         if (!supportsFormatTable()) {
             return;
         }
@@ -781,7 +781,7 @@ public abstract class CatalogTestBase {
         Table table = catalog.getTable(Identifier.create("test_db", 
"test_table"));
         BatchWriteBuilder writeBuilder = table.newBatchWriteBuilder();
         try (BatchTableWrite write = writeBuilder.newWrite();
-                BatchTableCommit commit = writeBuilder.newCommit(); ) {
+                BatchTableCommit commit = writeBuilder.newCommit()) {
             write.write(
                     GenericRow.of(1, BinaryString.fromString("2"), 
BinaryString.fromString("3")));
             commit.commit(write.prepareCommit());

Reply via email to