This is an automated email from the ASF dual-hosted git repository. yiguolei pushed a commit to branch branch-2.1 in repository https://gitbox.apache.org/repos/asf/doris.git
commit 27ae96c5d036bd2189ba50bb3ca5d894a467d0a7 Author: Dongyang Li <[email protected]> AuthorDate: Tue Feb 20 22:00:32 2024 +0800 [fix](case) adjust case if running on muti BEs (#31160) Co-authored-by: stephen <[email protected]> --- .../suites/datatype_p0/decimalv3/test_decimal256_outfile_csv.groovy | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/regression-test/suites/datatype_p0/decimalv3/test_decimal256_outfile_csv.groovy b/regression-test/suites/datatype_p0/decimalv3/test_decimal256_outfile_csv.groovy index 54bbb5ca3fa..24054e6408d 100644 --- a/regression-test/suites/datatype_p0/decimalv3/test_decimal256_outfile_csv.groovy +++ b/regression-test/suites/datatype_p0/decimalv3/test_decimal256_outfile_csv.groovy @@ -107,6 +107,11 @@ suite("test_decimal256_outfile_csv") { def uuid = UUID.randomUUID().toString() def outFilePath = """/tmp/test_decimal256_outfile_csv_${uuid}""" + List<List<Object>> backends = sql """ show backends """ + assertTrue(backends.size() > 0) + if (backends.size() > 1) { + outFilePath = "/tmp" + } try { logger.info("outfile: " + outFilePath) // check outfile --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
