(&mut self)
| 4340 | } |
| 4341 | |
| 4342 | fn parse_index_option(&mut self) -> Result<IndexOption<Raw>, ParserError> { |
| 4343 | let name = self.parse_index_option_name()?; |
| 4344 | let value = match name { |
| 4345 | IndexOptionName::RetainHistory => self.parse_option_retain_history(), |
| 4346 | }?; |
| 4347 | Ok(IndexOption { name, value }) |
| 4348 | } |
| 4349 | |
| 4350 | fn parse_raw_ident(&mut self) -> Result<RawClusterName, ParserError> { |
| 4351 | if self.consume_token(&Token::LBracket) { |
nothing calls this directly
no test coverage detected