MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / test_seven_b

Method test_seven_b

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

Source from the content-addressed store, hash-verified

1552 )
1553
1554 def test_seven_b(self):
1555 t1 = table("t1", column("a"))
1556 t2 = table("t2", column("b"))
1557 self.assert_compile(
1558 join(t1, t2, onclause=false()),
1559 "t1 JOIN t2 ON 0 = 1",
1560 dialect=self._dialect(False),
1561 )
1562
1563 def test_seven_c(self):
1564 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