This is an automated email from the ASF dual-hosted git repository.

yiguolei pushed a commit to branch branch-2.1
in repository https://gitbox.apache.org/repos/asf/doris.git


The following commit(s) were added to refs/heads/branch-2.1 by this push:
     new 84126ea7213 [regression-test](fix) fix 
test_cumu_compaction_with_delete.groovy global var (#46165)
84126ea7213 is described below

commit 84126ea72131fe8f53b5ebc394790551fe59bd29
Author: shuke <sh...@selectdb.com>
AuthorDate: Tue Dec 31 23:08:04 2024 +0800

    [regression-test](fix) fix test_cumu_compaction_with_delete.groovy global 
var (#46165)
---
 .../suites/compaction/test_cumu_compaction_with_delete.groovy         | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/regression-test/suites/compaction/test_cumu_compaction_with_delete.groovy 
b/regression-test/suites/compaction/test_cumu_compaction_with_delete.groovy
index 7c6be0b177c..4b31b5e6379 100644
--- a/regression-test/suites/compaction/test_cumu_compaction_with_delete.groovy
+++ b/regression-test/suites/compaction/test_cumu_compaction_with_delete.groovy
@@ -50,7 +50,7 @@ suite("test_cumu_compaction_with_delete") {
             sql """ delete from ${tableName} where user_id = 1"""
         }
 
-        now = System.currentTimeMillis()
+        def now = System.currentTimeMillis()
 
         while(true){
             if(check_cumu_point(100)){
@@ -58,7 +58,7 @@ suite("test_cumu_compaction_with_delete") {
             }
             Thread.sleep(1000)
         }
-        time_diff = System.currentTimeMillis() - now
+        def time_diff = System.currentTimeMillis() - now
         logger.info("time_diff:" + time_diff)
         assertTrue(time_diff<200*1000)
 


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org

Reply via email to