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
The following commit(s) were added to refs/heads/branch-2.1 by this push:
new ec40e93b091 [fix](case) remove large sql (#54649)
ec40e93b091 is described below
commit ec40e93b091546a8138712877e08eaa72aa07d94
Author: shuke <[email protected]>
AuthorDate: Mon Aug 18 10:07:48 2025 +0800
[fix](case) remove large sql (#54649)
### What problem does this PR solve?
Issue Number: close #xxx
Related PR: #xxx
Problem Summary:
### Release note
None
### Check List (For Author)
- Test <!-- At least one of them must be included. -->
- [ ] Regression test
- [ ] Unit Test
- [ ] Manual test (add detailed scripts or steps below)
- [ ] No need to test or manual test. Explain why:
- [ ] This is a refactor/code format and no logic has been changed.
- [ ] Previous test can cover this change.
- [ ] No code files have been changed.
- [ ] Other reason <!-- Add your reason? -->
- Behavior changed:
- [ ] No.
- [ ] Yes. <!-- Explain the behavior change -->
- Does this need documentation?
- [ ] No.
- [ ] Yes. <!-- Add document PR link here. eg:
https://github.com/apache/doris-website/pull/1214 -->
### Check List (For Reviewer who merge this PR)
- [ ] Confirm the release note
- [ ] Confirm test cases
- [ ] Confirm document
- [ ] Add branch pick label <!-- Add branch pick label that this PR
should merge into -->
---
.../suites/query_p1/str64_serialize/str64_serialize.groovy | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git
a/regression-test/suites/query_p1/str64_serialize/str64_serialize.groovy
b/regression-test/suites/query_p1/str64_serialize/str64_serialize.groovy
index b0e3ffa99e9..9700113b831 100644
--- a/regression-test/suites/query_p1/str64_serialize/str64_serialize.groovy
+++ b/regression-test/suites/query_p1/str64_serialize/str64_serialize.groovy
@@ -52,6 +52,8 @@ suite("str64_serialize") {
sql "set parallel_pipeline_task_num=1;"
qt_test "select /*+ LEADING(a,b) */ count(*) from d_table as a, d_table2
as b where a.k4=b.k4 and a.k1=b.k1;"
- qt_test "select /*+ LEADING(b,a) */ count(*) from d_table as a, d_table2
as b where a.k4=b.k4 and a.k1=b.k1;"
+
+ // this query will use too much memory.
+ // qt_test "select /*+ LEADING(b,a) */ count(*) from d_table as a,
d_table2 as b where a.k4=b.k4 and a.k1=b.k1;"
}
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]