Github user jacques-n commented on a diff in the pull request:

    https://github.com/apache/drill/pull/232#discussion_r43716276
  
    --- Diff: 
exec/java-exec/src/main/java/org/apache/drill/exec/store/easy/text/compliant/CompliantTextRecordReader.java
 ---
    @@ -101,16 +108,23 @@ public void setup(OperatorContext context, 
OutputMutator outputMutator) throws E
           InputStream stream = 
dfs.openPossiblyCompressedStream(split.getPath());
           TextInput input = new TextInput(settings,  stream, readBuffer, 
split.getStart(), split.getStart() + split.getLength());
     
    -      TextOutput output = null;
           if(settings.isUseRepeatedVarChar()){
    -        output = new RepeatedVarCharOutput(outputMutator, getColumns(), 
isStarQuery());
    -      }else{
    -        //TODO: Add field output.
    -        throw new UnsupportedOperationException();
    +        TextOutput output = new RepeatedVarCharOutput(outputMutator, 
getColumns(), isStarQuery());
    +        this.reader = new TextReader(settings, input, output, 
whitespaceBuffer);
    +        reader.start();
    +      } else {
    +        // two-phase read approach.
    +        // phase-1: read the header from the file
    +        String [] fieldNames = extractHeader(input);
    +
    +        // phase-2: now read the data
    +        stream = dfs.openPossiblyCompressedStream(split.getPath());
    +        input = new TextInput(settings,  stream, readBuffer, 
split.getStart(), split.getStart() + split.getLength());
    +        TextOutput output = new FieldVarCharOutput(outputMutator, 
fieldNames, getColumns(), isStarQuery());
    +        this.reader = new TextReader(settings, input, output, 
whitespaceBuffer);
    --- End diff --
    
    These last two lines can probably be pulled out of the if/else


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

Reply via email to