Github user jackylk commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/2882#discussion_r229961572
--- 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 --
move `writtenBy` to next line
---