This is an automated email from the ASF dual-hosted git repository.
amoghj pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/iceberg.git
The following commit(s) were added to refs/heads/main by this push:
new dddb5f423b [Core] Fix TestFastAppend.testAddManyFiles() (#11218)
dddb5f423b is described below
commit dddb5f423b353d961b8a08eb2cb4371d453c2959
Author: Anurag Mantripragada <[email protected]>
AuthorDate: Thu Sep 26 17:13:26 2024 -0700
[Core] Fix TestFastAppend.testAddManyFiles() (#11218)
---
core/src/test/java/org/apache/iceberg/TestFastAppend.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/core/src/test/java/org/apache/iceberg/TestFastAppend.java
b/core/src/test/java/org/apache/iceberg/TestFastAppend.java
index b2f19fbd5f..7a93b99887 100644
--- a/core/src/test/java/org/apache/iceberg/TestFastAppend.java
+++ b/core/src/test/java/org/apache/iceberg/TestFastAppend.java
@@ -54,7 +54,7 @@ public class TestFastAppend extends TestBase {
dataFiles.add(dataFile);
}
- AppendFiles append = table.newAppend();
+ AppendFiles append = table.newFastAppend();
dataFiles.forEach(append::appendFile);
append.commit();