MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / test_seven_d

Method test_seven_d

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

Source from the content-addressed store, hash-verified

1570 )
1571
1572 def test_seven_d(self):
1573 t1 = table("t1", column("a"))
1574 t2 = table("t2", column("b"))
1575 self.assert_compile(
1576 join(t1, t2, onclause=false()),
1577 "t1 JOIN t2 ON false",
1578 dialect=self._dialect(True),
1579 )
1580
1581 def test_eight(self):
1582 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