MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / test_other_exprs

Method test_other_exprs

test/sql/test_operators.py:479–483  ·  view source on GitHub ↗
(self, expr, expected)

Source from the content-addressed store, hash-verified

477 argnames="expr, expected",
478 )
479 def test_other_exprs(self, expr, expected):
480 t = table("t", column("q", Integer), column("p", Integer))
481 expr = resolve_lambda(expr, p=t.c.p, q=t.c.q)
482
483 self.assert_compile(expr, expected)
484
485 @testing.combinations(
486 operators.add,

Callers

nothing calls this directly

Calls 4

tableFunction · 0.90
columnFunction · 0.90
resolve_lambdaFunction · 0.90
assert_compileMethod · 0.80

Tested by

no test coverage detected