Github user xubo245 commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/2336#discussion_r191985122
--- Diff:
core/src/main/java/org/apache/carbondata/core/util/CarbonUtil.java ---
@@ -631,6 +631,29 @@ public static int nextGreaterValueToTarget(int
currentIndex,
return integers;
}
+ /**
+ * Convert path with start and end string
+ * Convert / . \ : space to _
+ * remove duplicate _
+ *
+ * @param path store path
+ * @param prefix prefix string
+ * @param suffix suffix string
+ * @return converted string
+ */
+ public static String convertPath(String path, String prefix, String
suffix) {
--- End diff --
remove this one and change the table name to UnknownTable+time
---