Package alluxio.job.plan.transform
Class HiveConstants.Types
- java.lang.Object
-
- alluxio.job.plan.transform.HiveConstants.Types
-
- Enclosing class:
- HiveConstants
public static final class HiveConstants.Types extends java.lang.ObjectHive Types.
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.StringBIGINTHive big int type.static java.lang.StringBINARYHive binary type.static java.lang.StringBOOLEANHive bool type.static java.lang.StringCHARHive char type.static java.lang.StringDATEHive date type.static java.lang.StringDECIMALHive decimal type.static java.lang.StringDOUBLEHive double type.static java.lang.StringFLOATHive float type.static java.lang.StringINTHive int type.static java.lang.StringSMALLINTHive small int type.static java.lang.StringSTRINGHive string type.static java.lang.StringTIMESTAMPHive timestamp type.static java.lang.StringTINYINTHive tiny int type.static java.lang.StringVARCHARHive varchar type.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static java.lang.StringgetHiveConstantType(java.lang.String type)Filters out parts of type information to match the types constant for type checking.
-
-
-
Field Detail
-
BOOLEAN
public static final java.lang.String BOOLEAN
Hive bool type.- See Also:
- Constant Field Values
-
TINYINT
public static final java.lang.String TINYINT
Hive tiny int type.- See Also:
- Constant Field Values
-
SMALLINT
public static final java.lang.String SMALLINT
Hive small int type.- See Also:
- Constant Field Values
-
INT
public static final java.lang.String INT
Hive int type.- See Also:
- Constant Field Values
-
BIGINT
public static final java.lang.String BIGINT
Hive big int type.- See Also:
- Constant Field Values
-
FLOAT
public static final java.lang.String FLOAT
Hive float type.- See Also:
- Constant Field Values
-
DOUBLE
public static final java.lang.String DOUBLE
Hive double type.- See Also:
- Constant Field Values
-
STRING
public static final java.lang.String STRING
Hive string type.- See Also:
- Constant Field Values
-
VARCHAR
public static final java.lang.String VARCHAR
Hive varchar type.- See Also:
- Constant Field Values
-
CHAR
public static final java.lang.String CHAR
Hive char type.- See Also:
- Constant Field Values
-
DATE
public static final java.lang.String DATE
Hive date type.- See Also:
- Constant Field Values
-
TIMESTAMP
public static final java.lang.String TIMESTAMP
Hive timestamp type.- See Also:
- Constant Field Values
-
DECIMAL
public static final java.lang.String DECIMAL
Hive decimal type.- See Also:
- Constant Field Values
-
BINARY
public static final java.lang.String BINARY
Hive binary type.- See Also:
- Constant Field Values
-
-