Github user gvramana commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/2131#discussion_r178505075
--- Diff:
core/src/main/java/org/apache/carbondata/core/metadata/schema/table/CarbonTable.java
---
@@ -143,6 +143,16 @@
private boolean hasDataMapSchema;
+ /**
+ * The boolean field which points if the data written for UnManaged Table
+ * or Managed Table. The difference between managed and unManaged table
is
+ * unManaged Table will not contain any Metadata folder and subsequently
+ * no TableStatus or Schema files.
+ */
+ private boolean isUnManagedTable;
+
+ private long UUID;
--- End diff --
UID cannot be in Tablelevel datastructure, as it is unique for one load.
Move it to LoadModel
---