MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / test_not_like

Method test_not_like

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

Source from the content-addressed store, hash-verified

3945 )
3946
3947 def test_not_like(self):
3948 self.assert_compile(
3949 column("x").not_like("y"),
3950 "x NOT LIKE :x_1",
3951 checkparams={"x_1": "y"},
3952 )
3953
3954 def test_not_like_escape(self):
3955 self.assert_compile(

Callers

nothing calls this directly

Calls 3

columnFunction · 0.90
assert_compileMethod · 0.80
not_likeMethod · 0.45

Tested by

no test coverage detected