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

starocean999 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 1def10f3f58 [fix](test)fix regression test case failure (#36391)
1def10f3f58 is described below

commit 1def10f3f58fa10c0d79965589aa8560d8475089
Author: starocean999 <40539150+starocean...@users.noreply.github.com>
AuthorDate: Wed Jun 26 21:30:19 2024 +0800

    [fix](test)fix regression test case failure (#36391)
    
    ## Proposed changes
    
    Issue Number: close #xxx
    
    <!--Describe your changes.-->
---
 .../suites/correctness_p0/test_ctas_mv/test_ctas_mv.groovy          | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git 
a/regression-test/suites/correctness_p0/test_ctas_mv/test_ctas_mv.groovy 
b/regression-test/suites/correctness_p0/test_ctas_mv/test_ctas_mv.groovy
index 81c71221756..932ffdbdfb4 100644
--- a/regression-test/suites/correctness_p0/test_ctas_mv/test_ctas_mv.groovy
+++ b/regression-test/suites/correctness_p0/test_ctas_mv/test_ctas_mv.groovy
@@ -66,9 +66,9 @@ suite("test_ctas_mv") {
     sql """ insert into test_table_t1 values(); """
     sql """ insert into test_table_t2 values(); """
 
-    sql """ CREATE MATERIALIZED VIEW test_table_view As
+    createMV(""" CREATE MATERIALIZED VIEW test_table_view As
             select a1,a3,a4,DATE_FORMAT(a5, 'yyyyMMdd') 
QUERY_TIME,DATE_FORMAT(a6 ,'yyyyMMdd') CREATE_TIME
-            from test_table_t1 where DATE_FORMAT(a5, 'yyyyMMdd') =20230131; """
+            from test_table_t1 where DATE_FORMAT(a5, 'yyyyMMdd') =20230131; 
""")
 
     sql """ create table szjdf_zjb PROPERTIES("replication_num"="1") as
             select disf.a2, disf.a1, disf.a3, disf.a4,
@@ -90,7 +90,7 @@ suite("test_ctas_mv") {
     """
 
     sql """
-        drop table if exists test_table_t1 FORCE;
+        drop table if exists test_table_t1;
     """
 
     sql """


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

Reply via email to