MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / test_compile_not_column_lvl

Method test_compile_not_column_lvl

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

Source from the content-addressed store, hash-verified

5378 )
5379
5380 def test_compile_not_column_lvl(self):
5381 c = column("c", Integer)
5382
5383 self.assert_compile(
5384 select(c.bitwise_not()),
5385 "SELECT ~c",
5386 )
5387
5388 def test_compile_not_colexpr_lvl(self):
5389 c = column("c", Integer)

Callers

nothing calls this directly

Calls 4

columnFunction · 0.90
selectFunction · 0.85
assert_compileMethod · 0.80
bitwise_notMethod · 0.45

Tested by

no test coverage detected