Return the :class:`_expression.Select` object emitted by this :class:`_query.Query`. Used for :func:`_sa.inspect` compatibility, this is equivalent to:: query.enable_eagerloads(False).with_labels().statement
(self)
| 814 | |
| 815 | @property |
| 816 | def selectable(self) -> Union[Select[_T], FromStatement[_T], UpdateBase]: |
| 817 | """Return the :class:`_expression.Select` object emitted by this |
| 818 | :class:`_query.Query`. |
| 819 | |
| 820 | Used for :func:`_sa.inspect` compatibility, this is equivalent to:: |
| 821 | |
| 822 | query.enable_eagerloads(False).with_labels().statement |
| 823 | |
| 824 | """ |
| 825 | return self.__clause_element__() |
| 826 | |
| 827 | def __clause_element__( |
| 828 | self, |
nothing calls this directly
no test coverage detected