From 3d50e6c7c54bf0cdc39cf2ce980f0dc8adfa7fae Mon Sep 17 00:00:00 2001 From: Brett Anderson Date: Fri, 23 Oct 2020 15:40:50 -0700 Subject: [PATCH] Update readme I think this is a typo, should be `ILIKE`, since it's case insensitive. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index faf708a..f5f620a 100644 --- a/README.md +++ b/README.md @@ -460,7 +460,7 @@ List of all possible predicates | `*_not_cont` | Does not contain | | `*_not_cont_any` | Does not contain any of | | | `*_not_cont_all` | Does not contain all of | | -| `*_i_cont` | Contains value with case insensitive | uses `LIKE` | +| `*_i_cont` | Contains value with case insensitive | uses `ILIKE` | | `*_i_cont_any` | Contains any of values with case insensitive | | | `*_i_cont_all` | Contains all of values with case insensitive | | | `*_not_i_cont` | Does not contain with case insensitive |