aboutsummaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorJacques Nadeau <jacques@apache.org>2014-05-19 07:57:25 -0700
committerJacques Nadeau <jacques@apache.org>2014-05-23 10:02:52 -0700
commit669efeb37bd1a6448392ce5dece34b392abb11ca (patch)
tree27bd147537ab249a70d07da922bb3c6d1f081a50 /common
parent33a3e4b15a394286b3dd41bba70266680207d770 (diff)
status changes
Diffstat (limited to 'common')
-rw-r--r--common/src/main/java/org/apache/drill/common/types/Types.java5
1 files changed, 1 insertions, 4 deletions
diff --git a/common/src/main/java/org/apache/drill/common/types/Types.java b/common/src/main/java/org/apache/drill/common/types/Types.java
index 66ed87ce6..e2c331056 100644
--- a/common/src/main/java/org/apache/drill/common/types/Types.java
+++ b/common/src/main/java/org/apache/drill/common/types/Types.java
@@ -111,8 +111,6 @@ public class Types {
case INTERVALYEAR:
case INTERVALDAY:
case LATE:
- case REPEATMAP:
- return java.sql.Types.OTHER;
case SMALLINT:
return java.sql.Types.SMALLINT;
case TIME:
@@ -225,7 +223,6 @@ public class Types {
case LATE:
return Comparability.UNKNOWN;
case MAP:
- case REPEATMAP:
return Comparability.NONE;
case BIT:
return Comparability.EQUAL;
@@ -273,7 +270,7 @@ public class Types {
public static MajorType withScaleAndPrecision(MinorType type, DataMode mode, int scale, int precision) {
return MajorType.newBuilder().setMinorType(type).setMode(mode).setScale(scale).setPrecision(precision).build();
}
-
+
public static MajorType required(MinorType type){
return MajorType.newBuilder().setMode(DataMode.REQUIRED).setMinorType(type).build();
}