Github user ravipesala commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/2363#discussion_r193953785
--- Diff:
core/src/main/java/org/apache/carbondata/core/metadata/schema/table/CarbonTable.java
---
@@ -218,6 +222,41 @@ public static void updateTableInfo(TableInfo
tableInfo) {
}
}
+ public static CarbonTable buildDummyTable(
+ String tablePath,
+ String tableName,
+ String dbName,
+ boolean hasFilter) throws IOException {
+ TableInfo tableInfoInfer = CarbonUtil.buildDummyTableInfo(tablePath,
tableName, dbName);
--- End diff --
what is the use of creating dummy table if alreday creating actual table
down?
---