cambyzju commented on code in PR #30859:
URL: https://github.com/apache/doris/pull/30859#discussion_r1478082493


##########
regression-test/suites/statistics/test_analyze_mv.groovy:
##########
@@ -17,6 +17,23 @@
 
 suite("test_analyze_mv") {
 
+    def wait_mv_finish = { db ->
+        while(true) {
+            Thread.sleep(1000)
+            boolean finished = true;
+            def result = sql """SHOW ALTER TABLE MATERIALIZED VIEW FROM 
${db};"""

Review Comment:
   support wait_mv_finish on `db + table` is better.
   
   ```sql
   SHOW ALTER TABLE MATERIALIZED VIEW
   [FROM database]
   [WHERE] // support TableName
   ```



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to