<div dir="ltr">DuckDB supported the Arrow Operator (->) for the Lambda Functions for List operations like list_transform(). This was consistent with how it is implemented in Snowflake. <br><br>Snowflake syntax:<br>SELECT TRANSFORM([1, 2, 3], x INT -> x + 1); -- output [2, 3, 4]<br><br>However with the release of 1.3.0 Ossivalis, DuckDB has changed the syntax to<br>SELECT list_transform([1, 2, 3], lambda x: x + 1); -- note use of lambda keyword instead of the Arrow Operator (->).<br><br><div>I wish DuckDB had kept the Lambda syntax consistent with Snowflake for SQL portability. Thoughts?</div></div>