Github user xuchuanyin commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/2685#discussion_r214626402
--- Diff:
hadoop/src/main/java/org/apache/carbondata/hadoop/testutil/StoreCreator.java ---
@@ -101,18 +101,32 @@
private static LogService LOG =
LogServiceFactory.getLogService(StoreCreator.class.getCanonicalName());
- private static AbsoluteTableIdentifier absoluteTableIdentifier;
- private static String storePath = null;
+ private AbsoluteTableIdentifier absoluteTableIdentifier;
+ private String storePath = null;
+ private String csvPath;
+ private boolean dictionary;
+ private List<String> sortCOls = new ArrayList<>();
--- End diff --
typing error
---