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

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

commit a1d0ae7836af9829d94ebb9a2a06cd97e14ef17c
Author: 仟弋 <[email protected]>
AuthorDate: Wed Feb 4 13:46:18 2026 +0800

    Fix minus
---
 paimon-api/src/main/java/org/apache/paimon/CoreOptions.java | 7 +------
 1 file changed, 1 insertion(+), 6 deletions(-)

diff --git a/paimon-api/src/main/java/org/apache/paimon/CoreOptions.java 
b/paimon-api/src/main/java/org/apache/paimon/CoreOptions.java
index 9d7dc8cb47..54633b930c 100644
--- a/paimon-api/src/main/java/org/apache/paimon/CoreOptions.java
+++ b/paimon-api/src/main/java/org/apache/paimon/CoreOptions.java
@@ -1889,12 +1889,7 @@ public class CoreOptions implements Serializable {
                                     + "the reader will try to get this 
partition from this fallback branch.");
 
     public static final ConfigOption<Boolean> ASYNC_FILE_WRITE =
-            key("    public static final ConfigOption<Boolean> 
ASYNC_FILE_WRITE =\n"
-                            + "            key(\"async-file-write\")\n"
-                            + "                    .booleanType()\n"
-                            + "                    .defaultValue(true)\n"
-                            + "                    .withDescription(\n"
-                            + "                            \"Whether to enable 
asynchronous IO writing when writing files.\");")
+            key("async-file-write")
                     .booleanType()
                     .defaultValue(true)
                     .withDescription(

Reply via email to