MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / test_select_from_clauselist

Method test_select_from_clauselist

test/sql/test_compiler.py:735–741  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

733 )
734
735 def test_select_from_clauselist(self):
736 self.assert_compile(
737 select(ClauseList(column("a"), column("b"))).select_from(
738 text("sometable")
739 ),
740 "SELECT a, b FROM sometable",
741 )
742
743 def test_use_labels(self):
744 self.assert_compile(

Callers

nothing calls this directly

Calls 6

selectFunction · 0.90
columnFunction · 0.90
textFunction · 0.90
ClauseListClass · 0.85
assert_compileMethod · 0.80
select_fromMethod · 0.45

Tested by

no test coverage detected