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

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


The following commit(s) were added to refs/heads/branch-2.0 by this push:
     new a248fc668a [fix][branch-2.0] change lazy open regression test name 
(#22405)
a248fc668a is described below

commit a248fc668a60b66f689eda7b08aa2c705925934a
Author: HHoflittlefish777 <[email protected]>
AuthorDate: Mon Jul 31 13:39:05 2023 +0800

    [fix][branch-2.0] change lazy open regression test name (#22405)
---
 .../rollup_p0/test_materialized_view_lazy_open.groovy  | 18 +++++++++---------
 1 file changed, 9 insertions(+), 9 deletions(-)

diff --git 
a/regression-test/suites/rollup_p0/test_materialized_view_lazy_open.groovy 
b/regression-test/suites/rollup_p0/test_materialized_view_lazy_open.groovy
index 599141d9c1..b4728f8491 100644
--- a/regression-test/suites/rollup_p0/test_materialized_view_lazy_open.groovy
+++ b/regression-test/suites/rollup_p0/test_materialized_view_lazy_open.groovy
@@ -15,15 +15,15 @@
 // specific language governing permissions and limitations
 // under the License.
 
-suite("test_materialized_view_lazy_open", "rollup") {
+suite("test_materialized_view_load_open", "rollup") {
 
     // because nereids cannot support rollup correctly forbid it temporary
     sql """set enable_nereids_planner=false"""
 
-    def tbName1 = "test_materialized_view_lazy_open"
-    def tbName2 = "test_materialized_view_lazy_open_dynamic_partition"
-    def tbName3 = "test_materialized_view_lazy_open_schema_change"
-    def tbName4 = 
"test_materialized_view_lazy_open_dynamic_partition_schema_change"
+    def tbName1 = "test_materialized_view_load_open"
+    def tbName2 = "test_materialized_view_load_open_dynamic_partition"
+    def tbName3 = "test_materialized_view_load_open_schema_change"
+    def tbName4 = 
"test_materialized_view_load_open_dynamic_partition_schema_change"
 
     def getJobState = { tableName ->
         def jobStateResult = sql """  SHOW ALTER TABLE MATERIALIZED VIEW WHERE 
TableName='${tableName}' ORDER BY CreateTime DESC LIMIT 1; """
@@ -131,7 +131,7 @@ suite("test_materialized_view_lazy_open", "rollup") {
             );
         """
     
-    sql "CREATE materialized VIEW test_lazy_open AS SELECT k1 FROM ${tbName1} 
GROUP BY k1;"
+    sql "CREATE materialized VIEW test_load_open AS SELECT k1 FROM ${tbName1} 
GROUP BY k1;"
     int max_try_secs = 60
     while (max_try_secs--) {
         String res = getJobState(tbName1)
@@ -147,7 +147,7 @@ suite("test_materialized_view_lazy_open", "rollup") {
         }
     }
 
-    sql "CREATE materialized VIEW test_lazy_open_dynamic_partition AS SELECT 
k1 FROM ${tbName2} GROUP BY k1;"
+    sql "CREATE materialized VIEW test_load_open_dynamic_partition AS SELECT 
k1 FROM ${tbName2} GROUP BY k1;"
     max_try_secs = 60
     while (max_try_secs--) {
         String res = getJobState(tbName2)
@@ -163,7 +163,7 @@ suite("test_materialized_view_lazy_open", "rollup") {
         }
     }
 
-    sql "CREATE materialized VIEW test_lazy_open_schema_change AS SELECT k1 
FROM ${tbName3} GROUP BY k1;"
+    sql "CREATE materialized VIEW test_load_open_schema_change AS SELECT k1 
FROM ${tbName3} GROUP BY k1;"
     max_try_secs = 60
     while (max_try_secs--) {
         String res = getJobState(tbName3)
@@ -179,7 +179,7 @@ suite("test_materialized_view_lazy_open", "rollup") {
         }
     }
 
-    sql "CREATE materialized VIEW 
test_lazy_open_dynamic_partition_schema_change AS SELECT k1 FROM ${tbName4} 
GROUP BY k1;"
+    sql "CREATE materialized VIEW 
test_load_open_dynamic_partition_schema_change AS SELECT k1 FROM ${tbName4} 
GROUP BY k1;"
     max_try_secs = 60
     while (max_try_secs--) {
         String res = getJobState(tbName4)


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

Reply via email to