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 356b8bb3c8 [arrow] Fix misleading exception message in
ArrowBundleWriter (#8514)
356b8bb3c8 is described below
commit 356b8bb3c885787ee794d51f5cfa900ddf968762
Author: Eunbin Son <[email protected]>
AuthorDate: Thu Jul 9 13:03:43 2026 +0900
[arrow] Fix misleading exception message in ArrowBundleWriter (#8514)
---
.../src/main/java/org/apache/paimon/arrow/writer/ArrowBundleWriter.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/paimon-arrow/src/main/java/org/apache/paimon/arrow/writer/ArrowBundleWriter.java
b/paimon-arrow/src/main/java/org/apache/paimon/arrow/writer/ArrowBundleWriter.java
index f331410432..39a006b6d7 100644
---
a/paimon-arrow/src/main/java/org/apache/paimon/arrow/writer/ArrowBundleWriter.java
+++
b/paimon-arrow/src/main/java/org/apache/paimon/arrow/writer/ArrowBundleWriter.java
@@ -68,7 +68,7 @@ public class ArrowBundleWriter implements BundleFormatWriter {
if (!arrowFormatWriter.write(internalRow)) {
flush();
if (!arrowFormatWriter.write(internalRow)) {
- throw new RuntimeException("Exception happens while write to
orc file");
+ throw new RuntimeException("Exception happens while writing
arrow record");
}
}
}