(&mut self)
| 221 | self |
| 222 | } |
| 223 | pub fn pop_projections(&mut self) -> Vec<ast::SelectItem> { |
| 224 | self.projection.take().unwrap_or_default() |
| 225 | } |
| 226 | /// Returns true if a projection has been explicitly set via `projection()`. |
| 227 | /// |
| 228 | /// This method is used to determine whether the SELECT clause has already been |
no test coverage detected