-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Optimize like to regexp conversion to do not include unnecessary ^.* and .*$ #8893
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
Merged
walterddr
merged 8 commits into
apache:master
from
gortiz:remove-like-to-regex-pre-and-suffix
Jul 14, 2022
Merged
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
74739dd
Optimize like to regexp conversion to do not include useless ^.* and .*$
gortiz cd7222b
Optimize likeToRegexpLike to reduce allocations
gortiz f517411
Merge remote-tracking branch 'origin' into remove-like-to-regex-pre-a…
gortiz 784c526
Merge branch 'master' into remove-like-to-regex-pre-and-suffix
gortiz 4ed2bee
LIKE '%' will be transformed into REGEXP_LIKE('')
gortiz 2ed99e8
Add an optimization in case of leading/trailing consecutive wildcards…
gortiz bfe2315
Fix an error in some specific expressions detected by integration tes…
gortiz 88f2564
Merge remote-tracking branch 'origin/master' into remove-like-to-rege…
gortiz File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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.
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.
"%%"becomes"", which should be fine?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.
do we plan to optimize something similar to
listed in this blog
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.
I don't think this is the place to do that because we don't want to just optimize
LIKE '%%%%%%%%%%%%%zz', we also want to optimizeREGEXP_LIKE(col, '((((((.*)*)*)*)*)*)*zz').I mean:
We should not focus on making 1. safe, we should focus in making 3. safe. Otherwise an attacker may not be able to use LIKE to create an attack but they could use REGEXP_LIKE.
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.
%meansmatches any string with zero or more characterssoLIKE('%%')will match with any text and therefore it should be equivalent toREGEXP_LIKE('')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.
thanks for the explanation. it just seems ok to recursively prune out leading/trailing
%e.g. instead ofstart = 1;we can do start equal to first non%char.