Replies: 1 comment 4 replies
-
@uchajk can you provide snippets to reproduce the issue? Are you using filterColumn? |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Case insensitive will search the keyword in lower case format. SQL: LOWER(column) LIKE LOWER(keyword)
'case_insensitive' => true,
I've got an issue with this part of the documentation. Particular column in my table is in upper case and so when searching in lower case:
$keyword = 'abc'
$column = LOWER('ABC')
this works just fine
When searching upper case though:
$keyword = 'ABC'
$column = LOWER('ABC')
does not match the column. LOWER(keyword) is not applied.
Beta Was this translation helpful? Give feedback.
All reactions