(self)
| 3747 | ":meth:`_expression.SelectBase.scalar_subquery`.", |
| 3748 | ) |
| 3749 | def as_scalar(self) -> ScalarSelect[Any]: |
| 3750 | return self.scalar_subquery() |
| 3751 | |
| 3752 | def exists(self) -> Exists: |
| 3753 | """Return an :class:`_sql.Exists` representation of this selectable, |
nothing calls this directly
no test coverage detected