We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The current search() implementation performs a case-sensitive match. We should add a flag to the search call to make it case insensitive, i.e.,
def search(query: String, caseInsensitive: Boolean = false): RDD[Long]
For a query string abc, it would be equivalent to executing the following regular expression query:
abc
[aA][bB][cC]
The text was updated successfully, but these errors were encountered:
anuragkh
No branches or pull requests
The current search() implementation performs a case-sensitive match. We should add a flag to the search call to make it case insensitive, i.e.,
For a query string
abc
, it would be equivalent to executing the following regular expression query:The text was updated successfully, but these errors were encountered: