MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / test_not_ilike

Method test_not_ilike

test/sql/test_operators.py:3968–3973  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

3966 )
3967
3968 def test_not_ilike(self):
3969 self.assert_compile(
3970 column("x").not_ilike("y"),
3971 "lower(x) NOT LIKE lower(:x_1)",
3972 checkparams={"x_1": "y"},
3973 )
3974
3975 def test_not_ilike_escape(self):
3976 self.assert_compile(

Callers

nothing calls this directly

Calls 3

columnFunction · 0.90
assert_compileMethod · 0.80
not_ilikeMethod · 0.45

Tested by

no test coverage detected