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

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


The following commit(s) were added to refs/heads/branch-2.1 by this push:
     new 5cddb709e0c [fix](test)fix regression test case failure (#38066)
5cddb709e0c is described below

commit 5cddb709e0c9004647e717e3dc7884c0992d452d
Author: starocean999 <[email protected]>
AuthorDate: Thu Jul 18 23:51:25 2024 +0800

    [fix](test)fix regression test case failure (#38066)
    
    ## Proposed changes
    
    pick from master https://github.com/apache/doris/pull/36391
    
    <!--Describe your changes.-->
---
 regression-test/suites/correctness_p0/test_ctas_mv.groovy | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/regression-test/suites/correctness_p0/test_ctas_mv.groovy 
b/regression-test/suites/correctness_p0/test_ctas_mv.groovy
index 81c71221756..932ffdbdfb4 100644
--- a/regression-test/suites/correctness_p0/test_ctas_mv.groovy
+++ b/regression-test/suites/correctness_p0/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: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to