MCPcopy Create free account
hub / github.com/sqlalchemy/sqlalchemy / _create_union

Method _create_union

lib/sqlalchemy/sql/selectable.py:4573–4576  ·  view source on GitHub ↗
(
        cls, *selects: _SelectStatementForCompoundArgument[_TP]
    )

Source from the content-addressed store, hash-verified

4571
4572 @classmethod
4573 def _create_union(
4574 cls, *selects: _SelectStatementForCompoundArgument[_TP]
4575 ) -> CompoundSelect[_TP]:
4576 return CompoundSelect(_CompoundSelectKeyword.UNION, *selects)
4577
4578 @classmethod
4579 def _create_union_all(

Callers 2

unionMethod · 0.80
unionFunction · 0.80

Calls 1

CompoundSelectClass · 0.85

Tested by

no test coverage detected