Uh oh!
There was an error while loading. Please reload this page.
[opt](nereids)flattern and/or - #44574
Merged
Merged
Conversation
doris-robot
commented
Nov 25, 2024
Thank you for your contribution to Apache Doris. Please clearly describe your PR:
|
englefly
commented
Nov 25, 2024
ContributorAuthor
run buildall |
englefly
marked this pull request as draft
November 25, 2024 13:13
englefly
commented
Nov 26, 2024
ContributorAuthor
run buildall |
engleflyforce-pushed
the
huge-binary-v4
branch
from
November 26, 2024 06:15
e811e76 to
80929c0Compareenglefly
commented
Nov 26, 2024
ContributorAuthor
run buildall |
2 similar comments
englefly
commented
Nov 26, 2024
ContributorAuthor
run buildall |
englefly
commented
Nov 27, 2024
ContributorAuthor
run buildall |
englefly
marked this pull request as ready for review
November 27, 2024 14:29
englefly
commented
Nov 28, 2024
ContributorAuthor
run buildall |
3 similar comments
englefly
commented
Nov 28, 2024
ContributorAuthor
run buildall |
englefly
commented
Nov 28, 2024
ContributorAuthor
run buildall |
englefly
commented
Nov 28, 2024
ContributorAuthor
run buildall |
engleflyforce-pushed
the
huge-binary-v4
branch
from
November 28, 2024 15:10
af72324 to
0d50edeCompareenglefly
commented
Nov 28, 2024
ContributorAuthor
run buildall |
engleflyforce-pushed
the
huge-binary-v4
branch
from
November 29, 2024 05:58
2f6a040 to
97bd558Compareenglefly
commented
Nov 29, 2024
ContributorAuthor
run buildall |
englefly
commented
Nov 29, 2024
ContributorAuthor
run buildall |
englefly
commented
Nov 29, 2024
ContributorAuthor
run compile |
englefly
commented
Nov 30, 2024
ContributorAuthor
run buildall |
englefly
commented
Nov 30, 2024
ContributorAuthor
run cloud_p0 |
starocean999
approved these changes
Nov 30, 2024
Contributor
PR approved by at least one committer and no changes requested. |
Contributor
PR approved by anyone and no changes requested. |
16 tasks
924060929 added a commit
that referenced
this pull request
Feb 19, 2025
fix prune partitions wrong, introduced by #44574
lzyy2024 pushed a commit
to lzyy2024/doris
that referenced
this pull request
Feb 21, 2025
fix prune partitions wrong, introduced by apache#44574
16 tasks
englefly pushed a commit
that referenced
this pull request
Apr 24, 2025
### What problem does this PR solve? #44574 make AND's child size may exceeds 2, need consider.
koarz pushed a commit
to koarz/doris
that referenced
this pull request
Jun 4, 2025
fix prune partitions wrong, introduced by apache#44574
koarz pushed a commit
to koarz/doris
that referenced
this pull request
Jun 4, 2025
### What problem does this PR solve? apache#44574 make AND's child size may exceeds 2, need consider.
16 tasks
englefly added a commit
that referenced
this pull request
Jul 1, 2025
### What problem does this PR solve? previous pr #44574 removes Expression.checkLimit(). this function is still useful, add it back
github-actionsBot
pushed a commit
that referenced
this pull request
Jul 1, 2025
### What problem does this PR solve? previous pr #44574 removes Expression.checkLimit(). this function is still useful, add it back
koarz pushed a commit
to koarz/doris
that referenced
this pull request
Jul 4, 2025
### What problem does this PR solve? previous pr apache#44574 removes Expression.checkLimit(). this function is still useful, add it back
koarz pushed a commit
to koarz/doris
that referenced
this pull request
Jul 4, 2025
### What problem does this PR solve? previous pr apache#44574 removes Expression.checkLimit(). this function is still useful, add it back
koarz pushed a commit
to koarz/doris
that referenced
this pull request
Jul 4, 2025
### What problem does this PR solve? previous pr apache#44574 removes Expression.checkLimit(). this function is still useful, add it back
16 tasks
HappenLee pushed a commit
to HappenLee/incubator-doris
that referenced
this pull request
Apr 24, 2026
### What problem does this PR solve? And/or expressions are represented by binary trees. The depth of the tree causes stack overflow in recursive program calls. To solve this problem, this pr will flatten the binary tree when processing and/or, reducing the number of recursions. At the same time, we also rewrite some recursive programs into non-recursive forms to avoid stack overflow. Issue
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for freeto join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What problem does this PR solve?
And/or expressions are represented by binary trees. The depth of the tree causes stack overflow in recursive program calls. To solve this problem, this pr will flatten the binary tree when processing and/or, reducing the number of recursions. At the same time, we also rewrite some recursive programs into non-recursive forms to avoid stack overflow.
Issue Number: close #xxx
Related PR: #xxx
Problem Summary:
Release note
None
Check List (For Author)
Test
Behavior changed:
Does this need documentation?
Check List (For Reviewer who merge this PR)