You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@drill.apache.org by "Hanifi Gunes (JIRA)" <ji...@apache.org> on 2015/07/01 02:41:04 UTC

[jira] [Created] (DRILL-3441) CompliantTextRecordReader#isStarQuery loops indefinitely

Hanifi Gunes created DRILL-3441:
-----------------------------------

             Summary: CompliantTextRecordReader#isStarQuery loops indefinitely
                 Key: DRILL-3441
                 URL: https://issues.apache.org/jira/browse/DRILL-3441
             Project: Apache Drill
          Issue Type: Bug
          Components: Storage - Text & CSV
            Reporter: Hanifi Gunes
            Assignee: Hanifi Gunes


The implementation recurse into itself and never terminates. We should fix this.

{code}
  @Override
  public boolean isStarQuery() {
    if(settings.isUseRepeatedVarChar()){
      ...
    }else{
      return isStarQuery();
    }
  }
{code}



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