This is an automated email from the ASF dual-hosted git repository.
dataroaring pushed a commit to branch branch-3.0
in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/branch-3.0 by this push:
new 592415b3979 branch-3.0: [fix](test)fix some docker regression test
#54701 (#54724)
592415b3979 is described below
commit 592415b39796dcef9c97832f62c26b7c65a99a9c
Author: github-actions[bot]
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Thu Aug 14 12:13:56 2025 +0800
branch-3.0: [fix](test)fix some docker regression test #54701 (#54724)
Cherry-picked from #54701
Co-authored-by: koarz <[email protected]>
---
regression-test/suites/cloud_p0/multi_cluster/test_tvf.groovy | 9 +++------
.../info_schema_db/test_backend_configuration.groovy | 4 ++--
2 files changed, 5 insertions(+), 8 deletions(-)
diff --git a/regression-test/suites/cloud_p0/multi_cluster/test_tvf.groovy
b/regression-test/suites/cloud_p0/multi_cluster/test_tvf.groovy
index 09b19fa364b..f43c3406c81 100644
--- a/regression-test/suites/cloud_p0/multi_cluster/test_tvf.groovy
+++ b/regression-test/suites/cloud_p0/multi_cluster/test_tvf.groovy
@@ -29,11 +29,8 @@ suite('test_tvf', 'multi_cluster,docker') {
for (def i = 0; i < 100; i++) {
def ret = sql """select * from numbers("number" = "100")"""
assertEquals(ret.size(), 100)
- test {
- // current cloud not implement it
- sql """select START_VERSION,END_VERSION from
information_schema.rowsets"""
- exception "_get_all_rowsets is not implemented"
- }
+ ret = sql """select START_VERSION,END_VERSION from
information_schema.rowsets"""
+ assertTrue(ret.size() > 0)
}
}
@@ -74,7 +71,7 @@ suite('test_tvf', 'multi_cluster,docker') {
// use old clusterName, has been droped
test {
sql """select * from numbers("number" = "100")"""
- exception "in cloud maybe this cluster has been dropped"
+ exception "Can not find compute group"
}
// switch to old cluster
sql """use @${currentCluster.cluster}"""
diff --git
a/regression-test/suites/external_table_p0/info_schema_db/test_backend_configuration.groovy
b/regression-test/suites/external_table_p0/info_schema_db/test_backend_configuration.groovy
index 704135cb888..a9321d9b1a2 100644
---
a/regression-test/suites/external_table_p0/info_schema_db/test_backend_configuration.groovy
+++
b/regression-test/suites/external_table_p0/info_schema_db/test_backend_configuration.groovy
@@ -27,12 +27,12 @@ suite("test_backend_configuration", "docker, p0,
external_table,information_sche
assertTrue(res.size() == 3)
sql """
- select CONFIG_NAME, CONFIG_TYPE, CONFIG_VALUE, IS_MUTABLE from
information_schema.backend_configuration where CONFIGURATION =
"disable_auto_compaction";
+ select * from information_schema.backend_configuration where
CONFIG_NAME = "disable_auto_compaction";
"""
assertTrue(res.size() == 3)
res = sql """
- select CONFIG_NAME, CONFIG_TYPE, CONFIG_VALUE, IS_MUTABLE from
information_schema.backend_configuration where CONFIGURATION =
"LZ4_HC_compression_level";
+ select * from information_schema.backend_configuration where
CONFIG_NAME = "LZ4_HC_compression_level";
"""
assertTrue(res.size() == 3)
}
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]