[CALCITE-6242] Enhance lambda closure#4926
Open
cjj2010 wants to merge 5 commits into
Open
Conversation
added 2 commits
May 8, 2026 16:31
…d" error when a column is used in lambda evaluation logic
xuzifu666
reviewed
May 8, 2026
| .type("RecordType(INTEGER NOT NULL EXPR$0) NOT NULL"); | ||
| s.withSql("select HIGHER_ORDER_FUNCTION2(1, () -> 0.1)") | ||
| .type("RecordType(INTEGER NOT NULL EXPR$0) NOT NULL"); | ||
| s.withSql("select HIGHER_ORDER_FUNCTION(1, (x, y) -> x + 1 + ^emp.deptno^) from emp") |
Member
There was a problem hiding this comment.
Please add jira message in test.
|
|
||
| !ok | ||
|
|
||
| select * |
|
|
||
| @Override public R visitLambda(RexLambda lambda, P arg) { | ||
| return null; | ||
| if (!deep) { |
Member
There was a problem hiding this comment.
I think you could add some comments here to explain the reason.
Member
|
There are some new discussions in Jira that you should keep up with. |
…bda closure support Add a conformance option that allows SQL dialects to reject lambda closures (references to enclosing scope variables from within lambda expressions).
|
mihaibudiu
reviewed
May 12, 2026
Contributor
mihaibudiu
left a comment
There was a problem hiding this comment.
What happens to nested lambdas? Are they legal? Will they validate?
x -> (y -> x + y)
For the inner closure "x" should not be treated like a table column name.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.



jira: https://issues.apache.org/jira/browse/CALCITE-6242