MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / _create_union_all

Method _create_union_all

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

Source from the content-addressed store, hash-verified

4699
4700 @classmethod
4701 def _create_union_all(
4702 cls, *selects: _SelectStatementForCompoundArgument[Unpack[_Ts]]
4703 ) -> CompoundSelect[Unpack[_Ts]]:
4704 return CompoundSelect(_CompoundSelectKeyword.UNION_ALL, *selects)
4705
4706 @classmethod
4707 def _create_except(

Callers 2

union_allMethod · 0.80
union_allFunction · 0.80

Calls 1

CompoundSelectClass · 0.85

Tested by

no test coverage detected