Add a column expression to the list of result columns to be returned.
(self, column: _ColumnExpressionArgument[Any])
| 1647 | "future release. Please use :meth:`_query.Query.add_columns`", |
| 1648 | ) |
| 1649 | def add_column(self, column: _ColumnExpressionArgument[Any]) -> Query[Any]: |
| 1650 | """Add a column expression to the list of result columns to be |
| 1651 | returned. |
| 1652 | |
| 1653 | """ |
| 1654 | return self.add_columns(column) |
| 1655 | |
| 1656 | @_generative |
| 1657 | def options(self, *args: ExecutableOption) -> Self: |
nothing calls this directly
no test coverage detected