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

lijibing 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 d3901256c27 [test](regression)Add log for waitingMTMVTaskFinished 
(#46455)
d3901256c27 is described below

commit d3901256c27638ec93d21679631c5526f3091a14
Author: James <[email protected]>
AuthorDate: Mon Jan 6 17:12:45 2025 +0800

    [test](regression)Add log for waitingMTMVTaskFinished (#46455)
    
    ### What problem does this PR solve?
    
    Add log for waitingMTMVTaskFinished
    
    Issue Number: close #xxx
    
    Related PR: #xxx
    
    Problem Summary:
    
    ### Release note
    
    None
---
 .../src/main/groovy/org/apache/doris/regression/suite/Suite.groovy  | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git 
a/regression-test/framework/src/main/groovy/org/apache/doris/regression/suite/Suite.groovy
 
b/regression-test/framework/src/main/groovy/org/apache/doris/regression/suite/Suite.groovy
index 2b7bbfbe91a..64c99d1a114 100644
--- 
a/regression-test/framework/src/main/groovy/org/apache/doris/regression/suite/Suite.groovy
+++ 
b/regression-test/framework/src/main/groovy/org/apache/doris/regression/suite/Suite.groovy
@@ -1571,6 +1571,12 @@ class Suite implements GroovyInterceptable {
                 + ", db_id is " + db_id
                 + ", table_id " + table_id)
         sql "analyze table ${result.last().get(6)}.${result.last().get(5)} 
with sync;"
+        String db = result.last().get(6)
+        String table = result.last().get(5)
+        result = sql("show table stats ${db}.${table}")
+        logger.info("table stats: " + result.toString())
+        result = sql("show index stats ${db}.${table} ${table}")
+        logger.info("index stats: " + result.toString())
     }
 
     void waitingMTMVTaskFinishedNotNeedSuccess(String jobName) {


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

Reply via email to