MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / _relevant_impls

Method _relevant_impls

test/sql/test_statement_params.py:37–45  ·  test/sql/test_statement_params.py::BasicTests._relevant_impls
()

Source from the content-addressed store, hash-verified

35
36 @staticmethod
37 def _relevant_impls():
38 return (
39 text(class="st">"select 1 + 2"),
40 tstring(Template(class="st">"select 1 + 2")),
41 text(class="st">"select 42 as q").columns(column(class="st">"q", Integer)),
42 func.max(42),
43 select(1, 2).union(select(3, 4)),
44 select(1, 2),
45 )
46
47 def test_params_impl(self):
48 exclude = (dml.UpdateBase,)

Callers 1

test_params_implMethod · 0.95

Calls 8

textFunction · 0.90
tstringFunction · 0.90
TemplateClass · 0.90
columnFunction · 0.90
selectFunction · 0.90
maxMethod · 0.80
columnsMethod · 0.45
unionMethod · 0.45

Tested by

no test coverage detected