Github user ravipesala commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/1707#discussion_r158900792
--- Diff:
core/src/main/java/org/apache/carbondata/core/datastore/filesystem/AbstractDFSCarbonFile.java
---
@@ -331,6 +378,26 @@ public boolean delete() {
return fs.create(pt, true, bufferSize, fs.getDefaultReplication(pt),
blockSize);
}
+ @Override public DataOutputStream getDataOutputStream(String path,
FileFactory.FileType fileType,
--- End diff --
It already has a method in this class , change that method to use codec as
per the file extension
---