This is an automated email from the ASF dual-hosted git repository.
yiguolei pushed a commit to branch branch-4.0
in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/branch-4.0 by this push:
new d6f2f2989c8 branch-4.0: [fix](regression test) fix case #56729
(#56812)
d6f2f2989c8 is described below
commit d6f2f2989c89b33b1ee5c84b9a0918431d8d5391
Author: github-actions[bot]
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Sat Oct 11 16:36:36 2025 +0800
branch-4.0: [fix](regression test) fix case #56729 (#56812)
Cherry-picked from #56729
Co-authored-by: Refrain <[email protected]>
---
regression-test/suites/csv_header_p0/test_csv_with_header.groovy | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/regression-test/suites/csv_header_p0/test_csv_with_header.groovy
b/regression-test/suites/csv_header_p0/test_csv_with_header.groovy
index 965b4c06858..f58f973e556 100644
--- a/regression-test/suites/csv_header_p0/test_csv_with_header.groovy
+++ b/regression-test/suites/csv_header_p0/test_csv_with_header.groovy
@@ -132,19 +132,19 @@ suite("test_csv_with_header", "p0,external") {
def hdfsFs = getHdfsFs()
//[broker load] test normal
label = UUID.randomUUID().toString().replaceAll("-", "")
- def remote_csv_file = uploadToHdfs("csv_header_p0/"+format_csv_file)
+ def remote_csv_file = uploadToHdfs("csv_header_p0/csv.txt")
def export_result = import_from_hdfs.call(testTable, label,
remote_csv_file, format_csv, brokerName, hdfsUser, hdfsPasswd)
check_import_result.call(label, testTable, expect_rows * 4)
//[broker load] csv_with_names
label = UUID.randomUUID().toString().replaceAll("-", "")
- remote_csv_file =
uploadToHdfs("csv_header_p0/"+format_csv_with_names_file)
+ remote_csv_file = uploadToHdfs("csv_header_p0/csv_with_names.txt")
export_result = import_from_hdfs.call(testTable, label,
remote_csv_file, format_csv_with_names, brokerName, hdfsUser, hdfsPasswd)
check_import_result.call(label, testTable, expect_rows * 5)
//[broker load] csv_with_names_and_types
label = UUID.randomUUID().toString().replaceAll("-", "")
- remote_csv_file =
uploadToHdfs("csv_header_p0/"+format_csv_with_names_and_types_file)
+ remote_csv_file =
uploadToHdfs("csv_header_p0/csv_with_names_and_types.txt")
export_result = import_from_hdfs.call(testTable, label,
remote_csv_file, format_csv_with_names_and_types, brokerName, hdfsUser,
hdfsPasswd)
check_import_result.call(label, testTable, expect_rows * 6)
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]