Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Lambda captures do not work with qualified column names #7784

Closed
findepi opened this issue Apr 7, 2017 · 1 comment
Closed

Lambda captures do not work with qualified column names #7784

findepi opened this issue Apr 7, 2017 · 1 comment

Comments

@findepi
Copy link
Contributor

findepi commented Apr 7, 2017

This works:

select transform(ARRAY[1], x -> x + a) from (values 1) u(a);
-- output: 2

But this does not:

select transform(ARRAY[1], x -> x + u.a) from (values 1) u(a);
-- line 1:37: Column 'u' cannot be resolved

FYI: @martint @haozhun @sopel39

@sopel39
Copy link
Contributor

sopel39 commented Nov 2, 2017

waits for release to complete before merging #9099 again

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

3 participants