MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / __clause_element__

Method __clause_element__

lib/sqlalchemy/orm/query.py:827–836  ·  view source on GitHub ↗
(
        self,
    )

Source from the content-addressed store, hash-verified

825 return self.__clause_element__()
826
827 def __clause_element__(
828 self,
829 ) -> Union[Select[_T], FromStatement[_T], UpdateBase]:
830 return (
831 self._with_compile_options(
832 _enable_eagerloads=False, _render_for_subquery=True
833 )
834 .set_label_style(LABEL_STYLE_TABLENAME_PLUS_COL)
835 .statement
836 )
837
838 @overload
839 def only_return_tuples(

Callers 1

selectableMethod · 0.95

Calls 2

_with_compile_optionsMethod · 0.95
set_label_styleMethod · 0.45

Tested by

no test coverage detected