Dmitry Lychagin created ASTERIXDB-2170:
------------------------------------------
Summary: SQLPP - Resolution order of implicit field access
Key: ASTERIXDB-2170
URL: https://issues.apache.org/jira/browse/ASTERIXDB-2170
Project: Apache AsterixDB
Issue Type: Bug
Components: SQL - Translator SQL++
Reporter: Dmitry Lychagin
Assignee: Dmitry Lychagin
The resolution order should be closest to furthest.
select * from orders
where pid in (select value pid from parts);
means
select * from orders o
where o.pid in (select value p.pid from parts p);
--
This message was sent by Atlassian JIRA
(v6.4.14#64029)