MCPcopy Create free account
hub / github.com/sqlalchemy/sqlalchemy / test_ilike

Method test_ilike

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

Source from the content-addressed store, hash-verified

3730 )
3731
3732 def test_ilike(self):
3733 self.assert_compile(
3734 column("x").ilike("y"),
3735 "lower(x) LIKE lower(:x_1)",
3736 checkparams={"x_1": "y"},
3737 )
3738
3739 def test_ilike_escape(self):
3740 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