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

Method test_seven_b

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

Source from the content-addressed store, hash-verified

1400 )
1401
1402 def test_seven_b(self):
1403 t1 = table("t1", column("a"))
1404 t2 = table("t2", column("b"))
1405 self.assert_compile(
1406 join(t1, t2, onclause=false()),
1407 "t1 JOIN t2 ON 0 = 1",
1408 dialect=self._dialect(False),
1409 )
1410
1411 def test_seven_c(self):
1412 t1 = table("t1", column("a"))

Callers

nothing calls this directly

Calls 6

_dialectMethod · 0.95
tableFunction · 0.90
columnFunction · 0.90
joinFunction · 0.90
falseFunction · 0.90
assert_compileMethod · 0.80

Tested by

no test coverage detected