Skip to content
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

Like Filter is case sensitive #7

Closed
bofalke opened this issue Feb 25, 2020 · 1 comment · Fixed by #12
Closed

Like Filter is case sensitive #7

bofalke opened this issue Feb 25, 2020 · 1 comment · Fixed by #12

Comments

@bofalke
Copy link

bofalke commented Feb 25, 2020

If JSONB is inside the document store the Like Filter will not work as intended since it is case sensitive.

A structure like this:

{
    "some": {
      "prop": "foo",
      "other": {
        "prop": "bat"
      }
    }
  },

can be filtered in the Document Store using the LikeFilter with this setup:

new LikeFilter('some', '%FOO%')

But with the postgres Document store that will not work, it will only work if the value is %foo%

@codeliner
Copy link
Contributor

thx for reporting @bofalke

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants