This is an automated email from the ASF dual-hosted git repository.
yiguolei pushed a commit to branch branch-4.1
in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/branch-4.1 by this push:
new 08e7e126aa2 [fix](test) Set profile level for writer profile case
(#65232)
08e7e126aa2 is described below
commit 08e7e126aa26dc44a04c572ea33ab7b9bfc40bd5
Author: shuke <[email protected]>
AuthorDate: Mon Jul 13 15:45:47 2026 +0800
[fix](test) Set profile level for writer profile case (#65232)
## Summary
Fix branch-4.1 query_profile/test_writer_profile by explicitly setting
profile_level=1 before the first INSERT profile check.
The case verifies that writer details are hidden at profile level 1 and
present at profile level 2. branch-4.1 now defaults profile_level to 2,
so the first half must set the intended level explicitly instead of
depending on the old default.
## Testing
- [x] git diff --check
- [ ] Runtime regression test not run locally; requires branch-4.1
regression environment with S3 credentials
---
regression-test/suites/query_profile/test_writer_profile.groovy | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/regression-test/suites/query_profile/test_writer_profile.groovy
b/regression-test/suites/query_profile/test_writer_profile.groovy
index f3e0f60b817..b78d829cf38 100644
--- a/regression-test/suites/query_profile/test_writer_profile.groovy
+++ b/regression-test/suites/query_profile/test_writer_profile.groovy
@@ -45,6 +45,7 @@ suite('test_writer_profile', "nonConcurrent") {
}
sql "set enable_profile=true;"
+ sql "set profile_level=1;"
def s3Endpoint = getS3Endpoint()
def s3Region = getS3Region()
@@ -191,4 +192,4 @@ suite('test_writer_profile', "nonConcurrent") {
sql "set enable_profile=false;"
sql "set profile_level=1;"
}
-}
\ No newline at end of file
+}
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]