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 f9557b1f31 [iceberg] Fix REST committer factory Javadoc and log
message typo (#8661)
f9557b1f31 is described below
commit f9557b1f31d1345691a416e0b5fbcb0a9102848a
Author: Eunbin Son <[email protected]>
AuthorDate: Thu Jul 16 14:19:05 2026 +0900
[iceberg] Fix REST committer factory Javadoc and log message typo (#8661)
---
.../org/apache/paimon/iceberg/IcebergRESTMetadataCommitterFactory.java | 2 +-
.../java/org/apache/paimon/iceberg/IcebergRestMetadataCommitter.java | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git
a/paimon-iceberg/src/main/java/org/apache/paimon/iceberg/IcebergRESTMetadataCommitterFactory.java
b/paimon-iceberg/src/main/java/org/apache/paimon/iceberg/IcebergRESTMetadataCommitterFactory.java
index e73a883f47..8b2bf719a0 100644
---
a/paimon-iceberg/src/main/java/org/apache/paimon/iceberg/IcebergRESTMetadataCommitterFactory.java
+++
b/paimon-iceberg/src/main/java/org/apache/paimon/iceberg/IcebergRESTMetadataCommitterFactory.java
@@ -20,7 +20,7 @@ package org.apache.paimon.iceberg;
import org.apache.paimon.table.FileStoreTable;
-/** doc. */
+/** Factory to create {@link IcebergRestMetadataCommitter}. */
public class IcebergRESTMetadataCommitterFactory implements
IcebergMetadataCommitterFactory {
@Override
public String identifier() {
diff --git
a/paimon-iceberg/src/main/java/org/apache/paimon/iceberg/IcebergRestMetadataCommitter.java
b/paimon-iceberg/src/main/java/org/apache/paimon/iceberg/IcebergRestMetadataCommitter.java
index fbc352e0c5..9dbc796701 100644
---
a/paimon-iceberg/src/main/java/org/apache/paimon/iceberg/IcebergRestMetadataCommitter.java
+++
b/paimon-iceberg/src/main/java/org/apache/paimon/iceberg/IcebergRestMetadataCommitter.java
@@ -324,7 +324,7 @@ public class IcebergRestMetadataCommitter implements
IcebergMetadataCommitter {
return createTable(new Schema(), null, newMetadata);
} else {
LOG.info(
- "Partition fieldId > 0. In order to avoid partition
evlolution, dummy schema will be created first");
+ "Partition fieldId > 0. In order to avoid partition
evolution, dummy schema will be created first");
int size =
spec.fields().stream().mapToInt(PartitionField::sourceId).max().orElseThrow();