You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@asterixdb.apache.org by "Dmitry Lychagin (JIRA)" <ji...@apache.org> on 2017/12/18 17:59:00 UTC

[jira] [Resolved] (ASTERIXDB-2170) SQLPP - Resolution order of implicit field access

     [ https://issues.apache.org/jira/browse/ASTERIXDB-2170?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Dmitry Lychagin resolved ASTERIXDB-2170.
----------------------------------------
    Resolution: Fixed

> 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)