-
Notifications
You must be signed in to change notification settings - Fork 3.7k
[opt](binlog) Support drop view binlog #39711
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
Closed
Conversation
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
…ache#36454) ## Proposed changes Fix when a ```insert select``` is executed in Follower, audit log could missing query statistics. This is because ```audit log``` is logged in the connect FE, but request is forward to master FE, then the coord FE is master FE, BE report query statistics to cood FE, finally the connected Follower could not get reported query statistics, audit log missing query statistics. We can add a new field to mark client connected FE, then be report query statistics to the connected FE. Besides, I do refactor for FE's WorkloadRuntimeStatusMgr to make logic more clear and add some log in be.
…ev2 as function coalesce's parameter in legacy planner (apache#36583)
…verflow (apache#36625) master is fix by apache#30145
…ache#36633) ## Proposed changes Pick from apache#36618
…with type of datetime/datetimev2/date/datev2 of function coalesce (apache#36640)
…mixed use multiple columns with type of datetime/datetimev2/date/datev2 of function coalesce when enable nereids (apache#36688)
apache#36700) fix mistake _inverted_index_query_cache_miss_counter -> _inverted_index_searcher_cache_miss_counter
check if fe set current connect fe, when do gray upgrade, fe may not set this value.
…ining_after_evaluate apache#36637 (apache#36685)
…n in the insert statement (apache#36654)
apache#36733) ## Proposed changes Issue Number: close #xxx <!--Describe your changes.-->
apache#36741) …36669) Issue Number: close #xxx <!--Describe your changes.--> --------- ## Proposed changes Issue Number: close #xxx <!--Describe your changes.--> Co-authored-by: stephen <hello-stephen@qq.com>
…se wait (apache#36662)" (apache#36740) ## Proposed changes Pick from apache#36662
…rom rows with delete sign (apache#36210) (apache#36764) cherry-pick apache#36210
…e CentOS 7 is EOL (apache#37568) (apache#38767) bp apache#37568
…pache#38769 (apache#38783) … ## Proposed changes Issue Number: close #xxx <!--Describe your changes.-->
…ultValue?] (apache#38491) (apache#38778) fix The children format needs to be [WhenClause+, DefaultValue?]
…pache#38805) related to apache#38176 comment out _s3_stats.*
|
Thank you for your contribution to Apache Doris. Since 2024-03-18, the Document has been moved to doris-website. |
Contributor
Author
|
Sorry. Closing it. |
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.
Proposed changes
Support drop view binlog.