We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 18ea4ba commit 15e4e32Copy full SHA for 15e4e32
1 file changed
src/parser/mod.rs
@@ -9948,7 +9948,7 @@ impl<'a> Parser<'a> {
9948
}
9949
9950
/// Parse `identifier [AS] identifier` where the AS keyword is optional
9951
- pub fn parse_identifier_with_optional_alias(&mut self) -> Result<IdentWithAlias, ParserError> {
+ fn parse_identifier_with_optional_alias(&mut self) -> Result<IdentWithAlias, ParserError> {
9952
let ident = self.parse_identifier()?;
9953
let _after_as = self.parse_keyword(Keyword::AS);
9954
let alias = self.parse_identifier()?;
0 commit comments