This is an automated email from the ASF dual-hosted git repository.
hello-stephen 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 3b0aed45edf [fix](regression) Fix agg_sync_mv data path (#65538)
3b0aed45edf is described below
commit 3b0aed45edf97989e3b274c657f221fb45df0675
Author: shuke <[email protected]>
AuthorDate: Wed Jul 15 15:18:02 2026 +0800
[fix](regression) Fix agg_sync_mv data path (#65538)
Related PR: #65133, #65336
Problem Summary:
The second `streamLoad` in
`nereids_syntax_p1/mv/aggregate/agg_sync_mv.groovy` still uses the
database and data-file path from before the case was moved into the
`aggregate` directory.
The stale `../agg_mv_test.dat` path does not exist. The stream load
therefore returns no response, and the regression framework later
reports the misleading `Text must not be null or empty` error while
parsing it.
Align the second load with the working initial load by using database
`regression_test_nereids_syntax_p1_mv_aggregate` and file
`agg_mv_test.dat`.
---
.../suites/nereids_syntax_p1/mv/aggregate/agg_sync_mv.groovy | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git
a/regression-test/suites/nereids_syntax_p1/mv/aggregate/agg_sync_mv.groovy
b/regression-test/suites/nereids_syntax_p1/mv/aggregate/agg_sync_mv.groovy
index 4b71d29ca53..e2b0010e749 100644
--- a/regression-test/suites/nereids_syntax_p1/mv/aggregate/agg_sync_mv.groovy
+++ b/regression-test/suites/nereids_syntax_p1/mv/aggregate/agg_sync_mv.groovy
@@ -480,7 +480,7 @@ suite("agg_sync_mv") {
streamLoad {
table "agg_mv_test"
- db "regression_test_nereids_syntax_p1_mv"
+ db "regression_test_nereids_syntax_p1_mv_aggregate"
set 'column_separator', ';'
set 'columns', '''
id, kbool, ktint, ksint, kint, kbint, klint, kfloat, kdbl,
kdcmls1, kdcmls2, kdcmls3,
@@ -493,7 +493,7 @@ suite("agg_sync_mv") {
km_tint_bool, km_int_int, km_tint_sint, km_tint_int, km_tint_bint,
km_tint_lint, km_tint_float,
km_tint_dbl, km_tint_dcml, km_tint_chr, km_tint_vchr, km_tint_str,
km_tint_date, km_tint_dtm, kjson, kstruct
'''
- file "../agg_mv_test.dat"
+ file "agg_mv_test.dat"
}
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]