pub fn lower_like_condition(
column: impl IntoColumnRef + Copy,
query: &str,
) -> SimpleExprExpand description
Builds a case-insensitive LIKE '%query%' condition for a column.
The condition declares ESCAPE '\' explicitly so SQLite applies the same escape
semantics as MySQL and PostgreSQL instead of treating backslashes as literal text.