You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@drill.apache.org by "Rahul Challapalli (JIRA)" <ji...@apache.org> on 2014/05/22 18:53:03 UTC

[jira] [Created] (DRILL-813) When joining 2 views (v1 and v2), the order of columns is reverse

Rahul Challapalli created DRILL-813:
---------------------------------------

             Summary: When joining 2 views (v1 and v2), the order of columns is reverse
                 Key: DRILL-813
                 URL: https://issues.apache.org/jira/browse/DRILL-813
             Project: Apache Drill
          Issue Type: Bug
          Components: Execution - Flow
            Reporter: Rahul Challapalli


git.commit.id.abbrev=70fab8c

create view v1 as select pageRank, pageURL, avgDuration from `dfs/parquet/rankings`;
create view v2 as select sourceIP, destinationURL, visitDate, adRevenue, userAgent, countryCode, languageCode, searchWord, duration from `dfs/parquet/uservisits`;

select * from v1 inner join v2 on v1.pageURL = v2.destinationURL;

Now the above select query displays the columns of v2 first followed by v1. The expected order should be cols of v1 followed by cols of v2.





--
This message was sent by Atlassian JIRA
(v6.2#6252)