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 f698f16f43 [iceberg] fix exception message. (#6036) f698f16f43 is described below commit f698f16f43afb63a558f86e4c05f9ec025800d92 Author: Jiajia Li <ljj270...@alibaba-inc.com> AuthorDate: Thu Aug 7 14:24:36 2025 +0800 [iceberg] fix exception message. (#6036) --- .../main/java/org/apache/paimon/table/iceberg/IcebergTableImpl.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/paimon-core/src/main/java/org/apache/paimon/table/iceberg/IcebergTableImpl.java b/paimon-core/src/main/java/org/apache/paimon/table/iceberg/IcebergTableImpl.java index e4c9c897d9..178c59a3ba 100644 --- a/paimon-core/src/main/java/org/apache/paimon/table/iceberg/IcebergTableImpl.java +++ b/paimon-core/src/main/java/org/apache/paimon/table/iceberg/IcebergTableImpl.java @@ -123,12 +123,12 @@ public class IcebergTableImpl implements ReadonlyTable, IcebergTable { @Override public InnerTableScan newScan() { throw new UnsupportedOperationException( - "LanceTable does not support InnerTableScan. Use newRead() instead."); + "IcebergTable does not support InnerTableScan. Use newRead() instead."); } @Override public InnerTableRead newRead() { throw new UnsupportedOperationException( - "LanceTable does not support InnerTableRead. Use newScan() instead."); + "IcebergTable does not support InnerTableRead. Use newScan() instead."); } }