MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / _create_intersect

Method _create_intersect

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

Source from the content-addressed store, hash-verified

4717
4718 @classmethod
4719 def _create_intersect(
4720 cls, *selects: _SelectStatementForCompoundArgument[Unpack[_Ts]]
4721 ) -> CompoundSelect[Unpack[_Ts]]:
4722 return CompoundSelect(_CompoundSelectKeyword.INTERSECT, *selects)
4723
4724 @classmethod
4725 def _create_intersect_all(

Callers 2

intersectMethod · 0.80
intersectFunction · 0.80

Calls 1

CompoundSelectClass · 0.85

Tested by

no test coverage detected