(field: Term, value: str)
| 16 | |
| 17 | |
| 18 | def posix_sqlite_regexp(field: Term, value: str): |
| 19 | term = cast(Term, field.wrap_constant(value)) |
| 20 | return BasicCriterion( |
| 21 | SQLiteRegexMatching.POSIX_REGEX, Coalesce(Cast(field, SqlTypes.VARCHAR), ""), term |
| 22 | ) |
| 23 | |
| 24 | |
| 25 | def insensitive_posix_sqlite_regexp(field: Term, value: str): |
nothing calls this directly
no test coverage detected
searching dependent graphs…