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 2eba6b992d [test] Fix unstable case testLimitPushDown
2eba6b992d is described below

commit 2eba6b992db3118f97bbdc62b680c5b794acff25
Author: JingsongLi <[email protected]>
AuthorDate: Sat Dec 27 23:02:17 2025 +0800

    [test] Fix unstable case testLimitPushDown
---
 .../test/java/org/apache/paimon/table/AppendOnlySimpleTableTest.java   | 3 +++
 1 file changed, 3 insertions(+)

diff --git 
a/paimon-core/src/test/java/org/apache/paimon/table/AppendOnlySimpleTableTest.java
 
b/paimon-core/src/test/java/org/apache/paimon/table/AppendOnlySimpleTableTest.java
index 201442b6cc..7a50549faa 100644
--- 
a/paimon-core/src/test/java/org/apache/paimon/table/AppendOnlySimpleTableTest.java
+++ 
b/paimon-core/src/test/java/org/apache/paimon/table/AppendOnlySimpleTableTest.java
@@ -1226,6 +1226,9 @@ public class AppendOnlySimpleTableTest extends 
SimpleTableTestBase {
             assertThat(cnt.get()).isEqualTo(limit);
             reader.close();
         }
+
+        // avoid unstable failure from `SimpleTableTestBase.after`.
+        Thread.sleep(1_000);
     }
 
     @Test

Reply via email to