|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Uses of TypeInfo in org.apache.hadoop.hive.metastore |
---|
Methods in org.apache.hadoop.hive.metastore with parameters of type TypeInfo | |
---|---|
static FieldSchema |
MetaStoreUtils.getFieldSchemaFromTypeInfo(String fieldName,
TypeInfo typeInfo)
Convert TypeInfo to FieldSchema. |
Uses of TypeInfo in org.apache.hadoop.hive.ql.exec |
---|
Methods in org.apache.hadoop.hive.ql.exec that return TypeInfo | |
---|---|
TypeInfo |
ColumnInfo.getType()
|
Methods in org.apache.hadoop.hive.ql.exec with parameters of type TypeInfo | |
---|---|
void |
ColumnInfo.setType(TypeInfo type)
|
Constructors in org.apache.hadoop.hive.ql.exec with parameters of type TypeInfo | |
---|---|
ColumnInfo(String internalName,
TypeInfo type)
|
Uses of TypeInfo in org.apache.hadoop.hive.ql.parse |
---|
Methods in org.apache.hadoop.hive.ql.parse that return types with arguments of type TypeInfo | |
---|---|
ArrayList<TypeInfo> |
InputSignature.getTypeArray()
|
Methods in org.apache.hadoop.hive.ql.parse with parameters of type TypeInfo | |
---|---|
void |
InputSignature.add(TypeInfo paramType)
|
Constructors in org.apache.hadoop.hive.ql.parse with parameters of type TypeInfo | |
---|---|
InputSignature(String name,
TypeInfo... classList)
|
Uses of TypeInfo in org.apache.hadoop.hive.ql.plan |
---|
Methods in org.apache.hadoop.hive.ql.plan that return TypeInfo | |
---|---|
TypeInfo |
exprNodeDesc.getTypeInfo()
|
Methods in org.apache.hadoop.hive.ql.plan with parameters of type TypeInfo | |
---|---|
void |
exprNodeDesc.setTypeInfo(TypeInfo typeInfo)
|
Constructors in org.apache.hadoop.hive.ql.plan with parameters of type TypeInfo | |
---|---|
exprNodeColumnDesc(TypeInfo typeInfo,
String column)
|
|
exprNodeConstantDesc(TypeInfo typeInfo,
Object value)
|
|
exprNodeDesc(TypeInfo typeInfo)
|
|
exprNodeFieldDesc(TypeInfo typeInfo,
exprNodeDesc desc,
String fieldName,
Boolean isList)
|
|
exprNodeFuncDesc(TypeInfo typeInfo,
Class<? extends UDF> UDFClass,
Method UDFMethod,
ArrayList<exprNodeDesc> children)
|
|
exprNodeIndexDesc(TypeInfo typeInfo,
exprNodeDesc desc,
exprNodeDesc index)
|
Uses of TypeInfo in org.apache.hadoop.hive.serde2.lazy |
---|
Methods in org.apache.hadoop.hive.serde2.lazy with parameters of type TypeInfo | |
---|---|
static LazyObject |
LazyFactory.createLazyObject(TypeInfo typeInfo)
Create a hierarchical LazyObject based on the given typeInfo. |
static ObjectInspector |
LazyFactory.createLazyObjectInspector(TypeInfo typeInfo,
byte[] separator,
int separatorIndex,
org.apache.hadoop.io.Text nullSequence)
Create a hierarchical ObjectInspector for LazyObject with the given typeInfo. |
Method parameters in org.apache.hadoop.hive.serde2.lazy with type arguments of type TypeInfo | |
---|---|
static ObjectInspector |
LazyFactory.createLazyStructInspector(List<String> columnNames,
List<TypeInfo> typeInfos,
byte[] separators,
org.apache.hadoop.io.Text nullSequence,
boolean lastColumnTakesRest)
Create a hierarchical ObjectInspector for LazyStruct with the given columnNames and columnTypeInfos. |
Constructors in org.apache.hadoop.hive.serde2.lazy with parameters of type TypeInfo | |
---|---|
LazyArray(TypeInfo typeInfo)
Construct a LazyArray object with the TypeInfo. |
|
LazyMap(TypeInfo typeInfo)
Construct a LazyMap object with the TypeInfo. |
|
LazyNonPrimitive(TypeInfo typeInfo)
|
|
LazyStruct(TypeInfo typeInfo)
Construct a LazyStruct object with the TypeInfo. |
Uses of TypeInfo in org.apache.hadoop.hive.serde2.typeinfo |
---|
Subclasses of TypeInfo in org.apache.hadoop.hive.serde2.typeinfo | |
---|---|
class |
ListTypeInfo
A List Type has homogeneous elements. |
class |
MapTypeInfo
A Map Type has homogeneous keys and homogeneous values. |
class |
PrimitiveTypeInfo
There are limited number of Primitive Types. |
class |
StructTypeInfo
StructTypeInfo represents the TypeInfo of a struct. |
Methods in org.apache.hadoop.hive.serde2.typeinfo that return TypeInfo | |
---|---|
TypeInfo |
ListTypeInfo.getListElementTypeInfo()
|
TypeInfo |
TypeInfo.getListElementTypeInfo()
|
static TypeInfo |
TypeInfoFactory.getListTypeInfo(TypeInfo elementTypeInfo)
|
TypeInfo |
MapTypeInfo.getMapKeyTypeInfo()
|
TypeInfo |
TypeInfo.getMapKeyTypeInfo()
|
static TypeInfo |
TypeInfoFactory.getMapTypeInfo(TypeInfo keyTypeInfo,
TypeInfo valueTypeInfo)
|
TypeInfo |
MapTypeInfo.getMapValueTypeInfo()
|
TypeInfo |
TypeInfo.getMapValueTypeInfo()
|
static TypeInfo |
TypeInfoFactory.getPrimitiveTypeInfo(Class<?> primitiveClass)
|
TypeInfo |
StructTypeInfo.getStructFieldTypeInfo(String field)
|
TypeInfo |
TypeInfo.getStructFieldTypeInfo(String field)
|
static TypeInfo |
TypeInfoFactory.getStructTypeInfo(List<String> names,
List<TypeInfo> typeInfos)
|
static TypeInfo |
TypeInfoUtils.getTypeInfoFromObjectInspector(ObjectInspector oi)
Get the TypeInfo object from the ObjectInspector object by recursively going into the ObjectInspector structure. |
static TypeInfo |
TypeInfoUtils.getTypeInfoFromTypeString(String typeString)
|
Methods in org.apache.hadoop.hive.serde2.typeinfo that return types with arguments of type TypeInfo | |
---|---|
List<TypeInfo> |
StructTypeInfo.getAllStructFieldTypeInfos()
|
List<TypeInfo> |
TypeInfo.getAllStructFieldTypeInfos()
|
static ArrayList<TypeInfo> |
TypeInfoUtils.getTypeInfosFromTypeString(String typeString)
|
Methods in org.apache.hadoop.hive.serde2.typeinfo with parameters of type TypeInfo | |
---|---|
static TypeInfo |
TypeInfoFactory.getListTypeInfo(TypeInfo elementTypeInfo)
|
static TypeInfo |
TypeInfoFactory.getMapTypeInfo(TypeInfo keyTypeInfo,
TypeInfo valueTypeInfo)
|
static ObjectInspector |
TypeInfoUtils.getStandardObjectInspectorFromTypeInfo(TypeInfo typeInfo)
Returns the standard object inspector that can be used to translate an object of that typeInfo to a standard object type. |
static String |
TypeInfoUtils.getTypeStringFromTypeInfo(TypeInfo typeInfo)
Return the |
void |
ListTypeInfo.setListElementTypeInfo(TypeInfo listElementTypeInfo)
For java serialization use only. |
void |
MapTypeInfo.setMapKeyTypeInfo(TypeInfo mapKeyTypeInfo)
For java serialization use only. |
void |
MapTypeInfo.setMapValueTypeInfo(TypeInfo mapValueTypeInfo)
For java serialization use only. |
Method parameters in org.apache.hadoop.hive.serde2.typeinfo with type arguments of type TypeInfo | |
---|---|
static TypeInfo |
TypeInfoFactory.getStructTypeInfo(List<String> names,
List<TypeInfo> typeInfos)
|
void |
StructTypeInfo.setAllStructFieldTypeInfos(ArrayList<TypeInfo> allStructFieldTypeInfos)
For java serialization use only. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |