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)