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 26f570f40e0 [test](test) fix unstable paimon test cases (#46383) 26f570f40e0 is described below commit 26f570f40e0a6ea89e2c22a84d86c918c31fa96a Author: Mingyu Chen (Rayner) <morning...@163.com> AuthorDate: Fri Jan 3 20:04:59 2025 +0800 [test](test) fix unstable paimon test cases (#46383) cherry-pick #46381 --- .../suites/external_table_p0/paimon/paimon_base_filesystem.groovy | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/regression-test/suites/external_table_p0/paimon/paimon_base_filesystem.groovy b/regression-test/suites/external_table_p0/paimon/paimon_base_filesystem.groovy index 6ac76336986..79df788f28d 100644 --- a/regression-test/suites/external_table_p0/paimon/paimon_base_filesystem.groovy +++ b/regression-test/suites/external_table_p0/paimon/paimon_base_filesystem.groovy @@ -34,10 +34,10 @@ suite("paimon_base_filesystem", "p0,external,doris,external_docker,external_dock String txYunAk = context.config.otherConfigs.get("txYunAk") String txYunSk = context.config.otherConfigs.get("txYunSk") - def obs = """select * from ${catalog_obs}.db1.all_table limit 1;""" - def oss = """select * from ${catalog_oss}.db1.all_table limit 1;""" - def cos = """select * from ${catalog_cos}.db1.all_table limit 1;""" - def cosn = """select * from ${catalog_cosn}.db1.all_table limit 1;""" + def obs = """select * from ${catalog_obs}.db1.all_table order by c1 limit 1;""" + def oss = """select * from ${catalog_oss}.db1.all_table order by c1 limit 1;""" + def cos = """select * from ${catalog_cos}.db1.all_table order by c1 limit 1;""" + def cosn = """select * from ${catalog_cosn}.db1.all_table order by c1 limit 1;""" sql """drop catalog if exists ${catalog_obs};""" sql """drop catalog if exists ${catalog_oss};""" --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org