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

Method _create_union_all

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

Source from the content-addressed store, hash-verified

4577
4578 @classmethod
4579 def _create_union_all(
4580 cls, *selects: _SelectStatementForCompoundArgument[_TP]
4581 ) -> CompoundSelect[_TP]:
4582 return CompoundSelect(_CompoundSelectKeyword.UNION_ALL, *selects)
4583
4584 @classmethod
4585 def _create_except(

Callers 2

union_allMethod · 0.80
union_allFunction · 0.80

Calls 1

CompoundSelectClass · 0.85

Tested by

no test coverage detected