MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / test_ilike

Method test_ilike

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

Source from the content-addressed store, hash-verified

3924 )
3925
3926 def test_ilike(self):
3927 self.assert_compile(
3928 column("x").ilike("y"),
3929 "lower(x) LIKE lower(:x_1)",
3930 checkparams={"x_1": "y"},
3931 )
3932
3933 def test_ilike_escape(self):
3934 self.assert_compile(

Callers

nothing calls this directly

Calls 3

columnFunction · 0.90
assert_compileMethod · 0.80
ilikeMethod · 0.45

Tested by

no test coverage detected