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

morningman 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 f951c6aed02 [fix](case)fix acid regression case. (#45999)
f951c6aed02 is described below

commit f951c6aed021bd50deb5f7ab585e606513f4b795
Author: daidai <changyu...@selectdb.com>
AuthorDate: Thu Dec 26 15:23:25 2024 +0800

    [fix](case)fix acid regression case. (#45999)
    
    ### What problem does this PR solve?
    
    Problem Summary:
    just fix error case.
---
 .../suites/external_table_p0/hive/test_transactional_hive.groovy      | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git 
a/regression-test/suites/external_table_p0/hive/test_transactional_hive.groovy 
b/regression-test/suites/external_table_p0/hive/test_transactional_hive.groovy
index 352685b8faf..81f2358e9da 100644
--- 
a/regression-test/suites/external_table_p0/hive/test_transactional_hive.groovy
+++ 
b/regression-test/suites/external_table_p0/hive/test_transactional_hive.groovy
@@ -56,9 +56,11 @@ suite("test_transactional_hive", 
"p0,external,hive,external_docker,external_dock
 
     def test_acid = {
         try {
+            sql """SET enable_fallback_to_original_planner=false;"""
             sql """ select * from orc_to_acid_tb """ 
         }catch( Exception e) {
-            assertTrue(e.getMessage().contains("For no acid table convert to 
acid, please COMPACT"));
+            logger.info("e.getMessage()" + e.getMessage())
+            assertTrue(e.getMessage().contains("Original non-ACID files in 
transactional tables are not supported"));
         }
 
         qt_2 """ select * from orc_to_acid_compacted_tb order by id """


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

Reply via email to