(field: Term, value: str)
| 66 | |
| 67 | |
| 68 | def mysql_ends_with(field: Term, value: str) -> Criterion: |
| 69 | return Like( |
| 70 | functions.Cast(field, SqlTypes.CHAR), StrWrapper(f"%{escape_like(value)}"), escape="" |
| 71 | ) |
| 72 | |
| 73 | |
| 74 | def mysql_insensitive_exact(field: Term, value: str) -> Criterion: |
nothing calls this directly
no test coverage detected
searching dependent graphs…