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

Method __clause_element__

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

Source from the content-addressed store, hash-verified

805 return self.__clause_element__()
806
807 def __clause_element__(
808 self,
809 ) -> Union[Select[_T], FromStatement[_T], UpdateBase]:
810 return (
811 self._with_compile_options(
812 _enable_eagerloads=False, _render_for_subquery=True
813 )
814 .set_label_style(LABEL_STYLE_TABLENAME_PLUS_COL)
815 .statement
816 )
817
818 @overload
819 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