We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c2b9b27 commit 974a770Copy full SHA for 974a770
src/ast/mod.rs
@@ -1321,8 +1321,16 @@ impl fmt::Display for LambdaFunction {
1321
#[cfg_attr(feature = "visitor", derive(Visit, VisitMut))]
1322
pub enum LambdaSyntax {
1323
/// Arrow syntax: `param -> expr` or `(param1, param2) -> expr`
1324
+ ///
1325
+ /// https://docs.databricks.com/aws/en/sql/language-manual/sql-ref-lambda-functions
1326
1327
+ /// Supported, but deprecated in DuckDB:
1328
+ /// https://duckdb.org/docs/stable/sql/functions/lambda
1329
Arrow,
1330
/// Lambda keyword syntax: `lambda param : expr` or `lambda param1, param2 : expr`
1331
1332
+ /// Recommended in DuckDB:
1333
1334
LambdaKeyword,
1335
}
1336
0 commit comments