Github user akashrn5 commented on a diff in the pull request: https://github.com/apache/carbondata/pull/2882#discussion_r230319095 --- Diff: examples/spark2/src/main/java/org/apache/carbondata/examples/sdk/CarbonReaderExample.java --- @@ -61,7 +61,7 @@ public static void main(String[] args) { CarbonWriter writer = CarbonWriter.builder() .outputPath(path) .withLoadOptions(map) - .withCsvInput(new Schema(fields)).build(); + .withCsvInput(new Schema(fields)).writtenBy("CarbonReaderExample").build(); --- End diff -- done
---