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

JingsongLi 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 3c2be085b6 [core] Remove debug print from compact buckets table (#8020)
3c2be085b6 is described below

commit 3c2be085b6d1d4333b691547e55ed1aadefec87e
Author: YeJunHao <[email protected]>
AuthorDate: Sun May 31 21:35:41 2026 +0800

    [core] Remove debug print from compact buckets table (#8020)
---
 .../main/java/org/apache/paimon/table/system/CompactBucketsTable.java   | 2 --
 1 file changed, 2 deletions(-)

diff --git 
a/paimon-core/src/main/java/org/apache/paimon/table/system/CompactBucketsTable.java
 
b/paimon-core/src/main/java/org/apache/paimon/table/system/CompactBucketsTable.java
index dad19ff263..f18d184b84 100644
--- 
a/paimon-core/src/main/java/org/apache/paimon/table/system/CompactBucketsTable.java
+++ 
b/paimon-core/src/main/java/org/apache/paimon/table/system/CompactBucketsTable.java
@@ -263,8 +263,6 @@ public class CompactBucketsTable implements DataTable, 
ReadonlyTable {
             DataSplit dataSplit = (DataSplit) split;
             // in case of schema evolution
             for (DataFileMeta file : dataSplit.dataFiles()) {
-                System.out.println(
-                        "File schema id " + file.schemaId() + ", base schema 
id " + baseSchemaId);
                 if (file.schemaId() > baseSchemaId) {
                     throw new RuntimeException(
                             String.format(

Reply via email to