Closed hlcianfagna closed 1 year ago
Good idea. The corresponding documentation of SQLAlchemy can be inspected at ^1.
Case insensitive LIKE makes use of the SQL
lower()
function on a generic backend. On the PostgreSQL backend it will useILIKE
.
Implemented by crate/crate-python#564.
.ilike()
is currently rendering aslower() LIKE lower()
Using CrateDB's native ILIKE operator could allow to benefit from a more efficient implementation in the backend in the future.