Github user gvramana commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/2131#discussion_r179088904
--- Diff:
processing/src/main/java/org/apache/carbondata/processing/loading/model/CarbonLoadModel.java
---
@@ -47,6 +47,13 @@
private String tablePath;
+ /*
+ This points if the carbonTable is a Unmanaged Table or not.
+ The path will be pointed by the tablePath. And there will be
+ no Metadata folder present for the unmanaged Table.
+ */
+ private boolean carbonUnmanagedTable;
--- End diff --
already class name has carbon word, so not required to repeat, this again.
better use "unmanagedTable"
---