(&mut self)
| 4782 | } |
| 4783 | |
| 4784 | fn parse_if_not_exists(&mut self) -> Result<bool, ParserError> { |
| 4785 | if self.parse_keyword(IF) { |
| 4786 | self.expect_keywords(&[NOT, EXISTS])?; |
| 4787 | Ok(true) |
| 4788 | } else { |
| 4789 | Ok(false) |
| 4790 | } |
| 4791 | } |
| 4792 | |
| 4793 | fn parse_alias(&mut self) -> Result<Option<Ident>, ParserError> { |
| 4794 | self.parse_keyword(AS) |
no test coverage detected