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

Method test_seven_d

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

Source from the content-addressed store, hash-verified

1418 )
1419
1420 def test_seven_d(self):
1421 t1 = table("t1", column("a"))
1422 t2 = table("t2", column("b"))
1423 self.assert_compile(
1424 join(t1, t2, onclause=false()),
1425 "t1 JOIN t2 ON false",
1426 dialect=self._dialect(True),
1427 )
1428
1429 def test_eight(self):
1430 self.assert_compile(

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