(&self)
| 177 | } |
| 178 | |
| 179 | fn column_list(&self) -> Vec<SimpleExpr> { |
| 180 | E::Column::iter() |
| 181 | .map(|col| col.select_as(col.into_expr())) |
| 182 | .collect() |
| 183 | } |
| 184 | |
| 185 | fn prepare_from(mut self) -> Self { |
| 186 | self.query.from(E::default().table_ref()); |
no test coverage detected