(self)
| 3067 | "use the :meth:`_query.Query.scalar_subquery` method.", |
| 3068 | ) |
| 3069 | def as_scalar(self) -> ScalarSelect[Any]: |
| 3070 | return self.element.set_label_style(LABEL_STYLE_NONE).scalar_subquery() |
| 3071 | |
| 3072 | |
| 3073 | class FromGrouping(GroupedElement, FromClause[_KeyColCC_co]): |
nothing calls this directly
no test coverage detected