Github user jackylk commented on a diff in the pull request:
https://github.com/apache/incubator-carbondata/pull/240#discussion_r84227656
--- Diff:
processing/src/main/java/org/apache/carbondata/processing/newflow/parser/CarbonParserFactory.java
---
@@ -0,0 +1,40 @@
+package org.apache.carbondata.processing.newflow.parser;
+
+import java.util.List;
+
+import
org.apache.carbondata.core.carbon.metadata.schema.table.column.CarbonColumn;
+import
org.apache.carbondata.core.carbon.metadata.schema.table.column.CarbonDimension;
+import
org.apache.carbondata.processing.newflow.parser.impl.ArrayParserImpl;
+import
org.apache.carbondata.processing.newflow.parser.impl.PrimitiveParserImpl;
+import
org.apache.carbondata.processing.newflow.parser.impl.StructParserImpl;
+
+public class CarbonParserFactory {
+
+ public static GenericParser createParser(CarbonColumn carbonColumn,
String[] complexDelimiters) {
+ return createParser(carbonColumn, complexDelimiters, 0);
+ }
+
+ private static GenericParser createParser(CarbonColumn carbonColumn,
String[] complexDelimiters,
--- End diff --
please give function description to these two `createParser` functions, it
is not so clear that what the `counter` it is
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---