MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / _create_union

Method _create_union

lib/sqlalchemy/sql/selectable.py:4695–4698  ·  view source on GitHub ↗
(
        cls, *selects: _SelectStatementForCompoundArgument[Unpack[_Ts]]
    )

Source from the content-addressed store, hash-verified

4693
4694 @classmethod
4695 def _create_union(
4696 cls, *selects: _SelectStatementForCompoundArgument[Unpack[_Ts]]
4697 ) -> CompoundSelect[Unpack[_Ts]]:
4698 return CompoundSelect(_CompoundSelectKeyword.UNION, *selects)
4699
4700 @classmethod
4701 def _create_union_all(

Callers 2

unionMethod · 0.80
unionFunction · 0.80

Calls 1

CompoundSelectClass · 0.85

Tested by

no test coverage detected