Github user gvramana commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/1616#discussion_r155478396
--- Diff:
processing/src/main/java/org/apache/carbondata/processing/util/CarbonLoaderUtil.java
---
@@ -196,8 +212,13 @@ public static void deleteStorePath(String path) {
*/
public static void deleteLocalDataLoadFolderLocation(CarbonLoadModel
loadModel,
boolean isCompactionFlow, boolean isAltPartitionFlow) {
- String databaseName = loadModel.getDatabaseName();
String tableName = loadModel.getTableName();
+ deleteLocalDataLoadFolderLocation(loadModel, isCompactionFlow,
isAltPartitionFlow, tableName);
--- End diff --
Define TableProcessingOperations Class, mark it as developer api, so that
it is not modified.
---