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 2c97c2e18c0 [fix](case)Fix temp table case (#58299)
2c97c2e18c0 is described below
commit 2c97c2e18c095366e0733bfcb0730553c6387c48
Author: zhangdong <[email protected]>
AuthorDate: Tue Nov 25 10:11:06 2025 +0800
[fix](case)Fix temp table case (#58299)
---
regression-test/suites/temp_table_p0/test_temp_table.groovy | 6 ++++--
1 file changed, 4 insertions(+), 2 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 4a3b8022887..7b263848322 100644
--- a/regression-test/suites/temp_table_p0/test_temp_table.groovy
+++ b/regression-test/suites/temp_table_p0/test_temp_table.groovy
@@ -122,9 +122,11 @@ suite('test_temp_table', 'p0') {
}
assertFalse(hasTempTable)
- def info_tables = "select * from information_schema.tables where
table_name = 't_test_temp_table2'"
+ def info_tables = sql """select * from information_schema.tables where
table_name = 't_test_temp_table2'"""
+ logger.info("info_tables: " + info_tables.toString())
assertEquals(0, info_tables.size())
- def info_columns = "select * from information_schema.columns where
table_name = 't_test_temp_table2'"
+ def info_columns = sql """select * from information_schema.columns where
table_name = 't_test_temp_table2'"""
+ logger.info("info_columns: " + info_columns.toString())
assertEquals(0, info_columns.size())
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]