You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@doris.apache.org by da...@apache.org on 2023/01/13 14:51:54 UTC

[doris] branch master updated: [regression-test](MTMV) Make the case test_create_mtmv more robust (addendum) (#15909)

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

dataroaring pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/doris.git


The following commit(s) were added to refs/heads/master by this push:
     new fbe68e7ec8 [regression-test](MTMV) Make the case test_create_mtmv more robust (addendum) (#15909)
fbe68e7ec8 is described below

commit fbe68e7ec840c4c17c30b0c30ab46a1e01980301
Author: Adonis Ling <ad...@gmail.com>
AuthorDate: Fri Jan 13 22:51:47 2023 +0800

    [regression-test](MTMV) Make the case test_create_mtmv more robust (addendum) (#15909)
---
 regression-test/suites/mtmv_p0/test_create_mtmv.groovy | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/regression-test/suites/mtmv_p0/test_create_mtmv.groovy b/regression-test/suites/mtmv_p0/test_create_mtmv.groovy
index 2b7f96bc2b..9d50dd3286 100644
--- a/regression-test/suites/mtmv_p0/test_create_mtmv.groovy
+++ b/regression-test/suites/mtmv_p0/test_create_mtmv.groovy
@@ -78,7 +78,7 @@ suite("test_create_mtmv") {
         state = show_task_result.last().get(index)
         println "The state of ${query} is ${state}"
         Thread.sleep(1000);
-    } while (state.equals('PENDING'))
+    } while (state.equals('PENDING') || state.equals('RUNNING'))
 
     assertEquals('SUCCESS', state)
     order_qt_select "SELECT * FROM ${mvName}"


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