Github user xuchuanyin commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/2537#discussion_r204613470
--- Diff:
core/src/main/java/org/apache/carbondata/core/statusmanager/FileFormatProperties.java
---
@@ -17,10 +17,19 @@
package org.apache.carbondata.core.statusmanager;
+import java.util.HashSet;
+import java.util.Set;
+
/**
* Provides the constant name for the file format properties
*/
public class FileFormatProperties {
+ public static Set<String> SUPPORTED_EXTERNAL_FORMAT = new
HashSet<String>() {
--- End diff --
OK
---