iffyio commented on code in PR #2301:
URL:
https://github.com/apache/datafusion-sqlparser-rs/pull/2301#discussion_r3128434891
##########
src/ast/mod.rs:
##########
@@ -1332,6 +1332,12 @@ pub enum Expr {
Lambda(LambdaFunction),
/// Checks membership of a value in a JSON array
MemberOf(MemberOf),
+ /// PostgreSQL `XMLCONCAT(xml[, ...])` — concatenates a list of
+ /// individual XML values to create a single value containing an
+ /// XML content fragment.
+ ///
+ ///
[PostgreSQL](https://www.postgresql.org/docs/current/functions-xml.html#FUNCTIONS-PRODUCING-XML-XMLCONCAT)
+ XmlConcat(Vec<Expr>),
Review Comment:
ah I see, I think we should keep the parsing as is that it gets represented
as a regular function vs making it a special case
--
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]