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

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


The following commit(s) were added to refs/heads/branch-4.1 by this push:
     new 16a4d1edcc7 branch-4.1: [fix](regression) skip temp table status check 
#65090 (#65119)
16a4d1edcc7 is described below

commit 16a4d1edcc7116a74d94117afa2063878e63d5b1
Author: github-actions[bot] 
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Thu Jul 2 08:21:29 2026 +0800

    branch-4.1: [fix](regression) skip temp table status check #65090 (#65119)
    
    Cherry-picked from #65090
    
    Co-authored-by: shuke <[email protected]>
---
 .../suites/temp_table_p0/test_temp_table.groovy          | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/regression-test/suites/temp_table_p0/test_temp_table.groovy 
b/regression-test/suites/temp_table_p0/test_temp_table.groovy
index 79218478127..9959fbd31ae 100644
--- a/regression-test/suites/temp_table_p0/test_temp_table.groovy
+++ b/regression-test/suites/temp_table_p0/test_temp_table.groovy
@@ -393,14 +393,14 @@ suite('test_temp_table', 'p0') {
     select_result1 = sql "select * from t_test_temp_table1"
     assertEquals(select_result1.size(), 5)
 
-    def show_table_status = sql "show table status"
-    containTempTable = false
-    for(int i = 0; i < show_table_status.size(); i++) {
-        if (show_table_status[i][0].equals("t_test_temp_table2")) {
-            containTempTable = true;
-        }
-    }
-    assertTrue(containTempTable)
+    // def show_table_status = sql "show table status"
+    // containTempTable = false
+    // for(int i = 0; i < show_table_status.size(); i++) {
+    //     if (show_table_status[i][0].equals("t_test_temp_table2")) {
+    //         containTempTable = true;
+    //     }
+    // }
+    // assertTrue(containTempTable)
 
     //export
     def uuid = UUID.randomUUID().toString()


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

Reply via email to