-
Notifications
You must be signed in to change notification settings - Fork 3.4k
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
[Fix](inverted index) fix array inverted index error match result when doing schema change add index #16839
Conversation
…n doing schema change add index
clang-tidy review says "All clean, LGTM! 👍" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
TeamCity pipeline, clickbench performance test result: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
PR approved by at least one committer and no changes requested. |
PR approved by anyone and no changes requested. |
…n doing schema change add index (apache#16839) There is a bug in inverted_index_writer when adding multiple lines array values' index. This problem can cause error result when doing schema change adding index.
…o fix inverted index issues (apache#1425) * [Fix](inverted index) fix add nulls bug for inverted fulltext index (apache#16078) We found a problem with inverted index when parser=english, if there were nulls in columns when flushing inverted index for them, it can cause CLucene throwing an exception. * [fix](regression test) fix test_array_index.groovy without 'order by' lead to result mismatch (apache#16575) * [fix](inverted index) fix array type inverted index query error (apache#16582) * [Fix](inverted index) fix array inverted index error match result when doing schema change add index (apache#16839) There is a bug in inverted_index_writer when adding multiple lines array values' index. This problem can cause error result when doing schema change adding index. ----------- commit 1a9eefe Author: airborne12 <[airborne08@gmail.com](mailto:airborne08@gmail.com)> Date: Fri Feb 17 11:50:39 2023 +0800 [Fix](inverted index) fix array inverted index error match result when doing schema change add index (apache#16839) commit ad14174 Author: YueW <[45946325+Tanya-W@users.noreply.github.com](mailto:45946325+Tanya-W@users.noreply.github.com)> Date: Fri Feb 10 17:57:15 2023 +0800 [fix](inverted index) fix array type inverted index query error (apache#16582) commit e682991 Author: YueW <[45946325+Tanya-W@users.noreply.github.com](mailto:45946325+Tanya-W@users.noreply.github.com)> Date: Fri Feb 10 08:53:22 2023 +0800 [fix](regression test) fix test_array_index.groovy without 'order by' lead to result mismatch (apache#16575) commit 69a3ecf Author: airborne12 <[airborne08@gmail.com](mailto:airborne08@gmail.com)> Date: Thu Jan 19 21:21:44 2023 +0800 [Fix](inverted index) fix add nulls bug for inverted fulltext index (apache#16078) --------- Co-authored-by: airborne12 <airborne08@gmail.com>
Proposed changes
Issue Number: close #16838
Problem summary
There is a bug in inverted_index_writer when adding multiple lines array values' index.
This problem can cause error result when doing schema change adding index.
Checklist(Required)
Further comments
If this is a relatively large or complex change, kick off the discussion at dev@doris.apache.org by explaining why you chose the solution you did and what alternatives you considered, etc...