(&mut self)
| 2387 | } |
| 2388 | |
| 2389 | fn parse_avro_doc_on_option_name(&mut self) -> Result<DocOnIdentifier<Raw>, ParserError> { |
| 2390 | match self.expect_one_of_keywords(&[TYPE, COLUMN])? { |
| 2391 | TYPE => Ok(DocOnIdentifier::Type(self.parse_raw_name()?)), |
| 2392 | COLUMN => Ok(DocOnIdentifier::Column(self.parse_column_name()?)), |
| 2393 | _ => unreachable!(), |
| 2394 | } |
| 2395 | } |
| 2396 | |
| 2397 | fn parse_csr_connection_avro(&mut self) -> Result<CsrConnectionAvro<Raw>, ParserError> { |
| 2398 | let connection = self.parse_csr_connection_reference()?; |
no test coverage detected