You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@drill.apache.org by "Deneche A. Hakim (JIRA)" <ji...@apache.org> on 2016/02/01 18:00:40 UTC

[jira] [Created] (DRILL-4331) TestFlattenPlanning.testFlattenPlanningAvoidUnnecessaryProject fail in Java 8

Deneche A. Hakim created DRILL-4331:
---------------------------------------

             Summary: TestFlattenPlanning.testFlattenPlanningAvoidUnnecessaryProject fail in Java 8
                 Key: DRILL-4331
                 URL: https://issues.apache.org/jira/browse/DRILL-4331
             Project: Apache Drill
          Issue Type: Sub-task
          Components: Tools, Build & Test
    Affects Versions: 1.5.0
            Reporter: Deneche A. Hakim


This test expects the following Project in the query plan:
{noformat}
Project(EXPR$0=[$1], rownum=[$0])
{noformat}

In Java 8, for some reason the scan operator exposes the columns in reverse order which causes the project to be different than the one expected:
{noformat}
Project(EXPR$0=[$0], rownum=[$1])
{noformat}

The plan is still correct, so the test must be fixed



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)