aboutsummaryrefslogtreecommitdiff
path: root/exec/java-exec/src/main/java/org/apache/drill/exec/store/dfs/easy/EasyFormatPlugin.java
diff options
context:
space:
mode:
authorJim Scott <jim@13ways.com>2015-11-03 15:43:54 -0600
committerParth Chandra <parthc@apache.org>2016-11-01 10:42:22 -0700
commit46c0f2a4135450417dfebf52f11538f8926fd467 (patch)
treea18c1c4f294ed87395e3bf9c3b5995bd1eba8bc8 /exec/java-exec/src/main/java/org/apache/drill/exec/store/dfs/easy/EasyFormatPlugin.java
parent818f94507b9d1792282a4bb8abd2d22d2fc2eb57 (diff)
DRILL-3423: Adding HTTPd Log Parsing functionality including full pushdown, type remapping and wildcard support.
Pushed through the requested columns for push down to the parser. Added more tests to cover a few more use cases. Ensured that user query fields are now completely consistent with returned values.
Diffstat (limited to 'exec/java-exec/src/main/java/org/apache/drill/exec/store/dfs/easy/EasyFormatPlugin.java')
-rw-r--r--exec/java-exec/src/main/java/org/apache/drill/exec/store/dfs/easy/EasyFormatPlugin.java1
1 files changed, 1 insertions, 0 deletions
diff --git a/exec/java-exec/src/main/java/org/apache/drill/exec/store/dfs/easy/EasyFormatPlugin.java b/exec/java-exec/src/main/java/org/apache/drill/exec/store/dfs/easy/EasyFormatPlugin.java
index c7f9cf8e9..c09e009d6 100644
--- a/exec/java-exec/src/main/java/org/apache/drill/exec/store/dfs/easy/EasyFormatPlugin.java
+++ b/exec/java-exec/src/main/java/org/apache/drill/exec/store/dfs/easy/EasyFormatPlugin.java
@@ -117,6 +117,7 @@ public abstract class EasyFormatPlugin<T extends FormatPluginConfig> implements
/** Method indicates whether or not this format could also be in a compression container (for example: csv.gz versus csv).
* If this format uses its own internal compression scheme, such as Parquet does, then this should return false.
+ * @return <code>true</code> if it is compressible
*/
public boolean isCompressible() {
return compressible;