branch-4.0: [feature](fe) Support ORDER BY and LIMIT clauses for UPDATE and DELETE commands #61681#61751
Merged
yiguolei merged 1 commit intobranch-4.0from Mar 26, 2026
Merged
Conversation
…E commands (#61681) ### What problem does this PR solve? Problem Summary: MySQL supports ORDER BY and LIMIT clauses in single-table UPDATE and DELETE statements, but Doris does not. This PR adds support for these clauses so users can write statements like: ```sql DELETE FROM table1 ORDER BY c1 ASC NULLS FIRST LIMIT 10, 3; UPDATE table1 SET c1 = 10 ORDER BY c2 LIMIT 100, 20; ``` The implementation reuses the existing `queryOrganization` grammar rule and `withQueryOrganization` builder method. For DELETE, when ORDER BY or LIMIT is present, the statement is routed through `DeleteFromUsingCommand` (INSERT INTO SELECT path) which naturally supports sort/limit semantics. For UPDATE, the queryOrganization is applied to the query plan after `withFilter`. ### Release note Support ORDER BY and LIMIT clauses in UPDATE and DELETE statements, consistent with MySQL single-table UPDATE/DELETE syntax. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Contributor
|
Thank you for your contribution to Apache Doris. Please clearly describe your PR:
|
Contributor
|
run buildall |
yiguolei
approved these changes
Mar 26, 2026
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 free
to 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.
Cherry-picked from #61681