MartinSahlen commented on code in PR #1602:
URL:
https://github.com/apache/datafusion-sqlparser-rs/pull/1602#discussion_r1884405468
##########
src/parser/mod.rs:
##########
@@ -8382,6 +8382,10 @@ impl<'a> Parser<'a> {
Ok(DataType::Tuple(field_defs))
}
Keyword::TRIGGER => Ok(DataType::Trigger),
+ Keyword::ANY => {
Review Comment:
As this is the first time I'm touching the codebase, I needed to understand
the general mechanisms. Your change worked in conjunction with `let _ =
self.parse_keyword(Keyword::TYPE);`, which makes intitutive sense after looking
at the code in general.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]