MCPcopy Create free account
hub / github.com/zzzeek/sqlalchemy / _create_intersect_all

Method _create_intersect_all

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

Source from the content-addressed store, hash-verified

4723
4724 @classmethod
4725 def _create_intersect_all(
4726 cls, *selects: _SelectStatementForCompoundArgument[Unpack[_Ts]]
4727 ) -> CompoundSelect[Unpack[_Ts]]:
4728 return CompoundSelect(_CompoundSelectKeyword.INTERSECT_ALL, *selects)
4729
4730 def _scalar_type(self) -> TypeEngine[Any]:
4731 return self.selects[0]._scalar_type()

Callers 2

intersect_allMethod · 0.80
intersect_allFunction · 0.80

Calls 1

CompoundSelectClass · 0.85

Tested by

no test coverage detected