gstvg commented on code in PR #1686:
URL: 
https://github.com/apache/datafusion-sqlparser-rs/pull/1686#discussion_r1934429898


##########
src/dialect/mod.rs:
##########
@@ -340,12 +340,21 @@ pub trait Dialect: Debug + Any {
     /// Returns true if the dialect supports lambda functions, for example:
     ///
     /// ```sql
-    /// SELECT transform(array(1, 2, 3), x -> x + 1); -- returns [2,3,4]
+    /// SELECT transform(array(1, 2, 3), (x) -> x + 1); -- returns [2,3,4]
     /// ```
     fn supports_lambda_functions(&self) -> bool {
         false
     }
 
+    /// Returns true if the dialect supports lambda functions without 
parentheses for a single argument, for example:
+    ///
+    /// ```sql
+    /// SELECT transform(array(1, 2, 3), x -> x + 1); -- returns [2,3,4]
+    /// ```
+    fn supports_parensless_lambda_functions(&self) -> bool {

Review Comment:
   You got it right. I think your point makes sense and I'm fine with turning 
off `supports_lambda_functions` for the Generic dialect, but should 
`supports_parensless_lambda_functions` be removed from the Dialect trait too? I 
want to run Datafusion with support for both lambdas (even if with limited 
syntax) and pg json syntax from 
[datafusion-functions-json](https://github.com/datafusion-contrib/datafusion-functions-json),
 and `supports_parensless_lambda_functions` allows me to use a custom dialect 
to do so. In the worst case I can run without pg syntax and support only direct 
function calls (`json_get`, etc)
   
   cc @samuelcolvin in case you have interest in this too



-- 
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: github-unsubscr...@datafusion.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: github-unsubscr...@datafusion.apache.org
For additional commands, e-mail: github-h...@datafusion.apache.org

Reply via email to