-
Notifications
You must be signed in to change notification settings - Fork 3
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
STUTL-45 implement escapeCqlWildcards #86
Conversation
Implement a new function to escape all five CQL wildcards, instead of just two as was done in `escapeCqlValue()`: * asterisk (*) * question mark (?) * caret (^) (sic) * backslash (\) * quote (") Refs STUTL-45, STUTL-33
* * quote (") | ||
* | ||
* @param string a string | ||
* @return string the input string with CQL's special characters escaped |
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.
The JSDoc of escapeCqlWildcards and escapeCqlValue may refer to each other using @see
and @link
.
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.
Looks good, thanks!
Quality Gate passedIssues Measures |
Implement a new function to escape all five CQL wildcards, instead of just two as was done in
escapeCqlValue()
:Refs STUTL-45, STUTL-33