-
Notifications
You must be signed in to change notification settings - Fork 88
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
Incorrect documentation on regex string comparator about not supporting flags #239
Comments
Hi @PragyaTripathi! Are you using the Bigtable Java client or the Bigtable Hbase Java client? If you are using the Bigtable Java client, you can achieve that using a regex filter. Here's an example for a row key:
You can find more filter examples here: https://github.com/GoogleCloudPlatform/java-docs-samples/blob/master/bigtable/snippets/src/main/java/com/example/bigtable/Filters.java Hope that helps! |
Hi @kolea2, I am well aware of it. I was just pointing out that the documentation is incorrect. |
Hi @PragyaTripathi, The |
@PragyaTripathi apologies, I misread your initial post - got it, thank you for filing this! @cshaff0524 is this something you could take a look at? Edit: looking at Rahul's comment, perhaps we could mention this |
Yes, I'll create a docs bug for this. Thanks for the heads up! |
While comparing HBase and Bigtable and outlining what can be supported, the documentation outlined here: https://cloud.google.com/bigtable/docs/hbase-differences#filters says that BigTable
It is possible to set case insensitivity flag using regex function in the library by setting RE2 flag for case insensitive search.
(?i)
The text was updated successfully, but these errors were encountered: