(&mut self, value: Vec<ast::SelectItem>)
| 217 | self |
| 218 | } |
| 219 | pub fn projection(&mut self, value: Vec<ast::SelectItem>) -> &mut Self { |
| 220 | self.projection = Some(value); |
| 221 | self |
| 222 | } |
| 223 | pub fn pop_projections(&mut self) -> Vec<ast::SelectItem> { |
| 224 | self.projection.take().unwrap_or_default() |
| 225 | } |
no outgoing calls
no test coverage detected