Github user akashrn5 commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/2882#discussion_r230637383
--- Diff:
examples/spark2/src/main/java/org/apache/carbondata/examples/sdk/CarbonReaderExample.java
---
@@ -61,7 +61,8 @@ 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, actually initially it was like that, and im using carbon formatting
only, but i do not know why it is formatting like this, need to once check the
xml
---