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

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


The following commit(s) were added to refs/heads/branch-4.0 by this push:
     new 03a6aa432c3 branch-4.0: [fix](test) add more log to debug #61009 
(#61010)
03a6aa432c3 is described below

commit 03a6aa432c325de13b7028073b2fd4cbd8648175
Author: Mingyu Chen (Rayner) <[email protected]>
AuthorDate: Wed Mar 4 13:02:13 2026 +0800

    branch-4.0: [fix](test) add more log to debug #61009 (#61010)
    
    bp #61009
---
 .../suites/external_table_p0/hive/write/test_hive_ctas_to_doris.groovy  | 2 ++
 1 file changed, 2 insertions(+)

diff --git 
a/regression-test/suites/external_table_p0/hive/write/test_hive_ctas_to_doris.groovy
 
b/regression-test/suites/external_table_p0/hive/write/test_hive_ctas_to_doris.groovy
index ebf406255a2..aa61d8a43d0 100644
--- 
a/regression-test/suites/external_table_p0/hive/write/test_hive_ctas_to_doris.groovy
+++ 
b/regression-test/suites/external_table_p0/hive/write/test_hive_ctas_to_doris.groovy
@@ -76,6 +76,7 @@ suite("test_hive_ctas_to_doris", 
"p0,external,hive,external_docker,external_dock
                 sql """ create table internal.${db_name}.${hive_tb}_4 
(id,str2,str3,str1) auto partition by list (str1)() 
properties("replication_num" = "1") as select id, str1, str2, str3 from 
${catalog}.${db_name}.${hive_tb} """
                 assertTrue(false)
             } catch (Exception ex) {
+                ex.printStackTrace();
                 assertTrue(ex.getMessage().contains("Partition name's length 
is over limit of 50"))
             }
 
@@ -90,6 +91,7 @@ suite("test_hive_ctas_to_doris", 
"p0,external,hive,external_docker,external_dock
                 sql """ create table internal.${db_name}.${hive_tb}_6 
(id,str1,str2,str3) DISTRIBUTED BY HASH(`str1`) BUCKETS 1 
properties("replication_num" = "1") as select id, str1, str2, str3 from 
${catalog}.${db_name}.${hive_tb} """
                 assertTrue(false)
             } catch (Exception ex) {
+                ex.printStackTrace();
                 assertTrue(ex.getMessage().contains("Insert has filtered data 
in strict mode"))
             }
 


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

Reply via email to