Uses of Class
org.apache.hadoop.hive.metastore.api.FieldSchema

Packages that use FieldSchema
org.apache.hadoop.hive.metastore   
org.apache.hadoop.hive.metastore.api   
org.apache.hadoop.hive.ql.exec   
org.apache.hadoop.hive.ql.metadata   
org.apache.hadoop.hive.ql.plan   
 

Uses of FieldSchema in org.apache.hadoop.hive.metastore
 

Methods in org.apache.hadoop.hive.metastore that return FieldSchema
static FieldSchema MetaStoreUtils.getFieldSchemaFromTypeInfo(String fieldName, TypeInfo typeInfo)
          Convert TypeInfo to FieldSchema.
 

Methods in org.apache.hadoop.hive.metastore that return types with arguments of type FieldSchema
 List<FieldSchema> MetaStoreClient.get_fields(String tableName)
           
 List<FieldSchema> HiveMetaStore.HMSHandler.get_fields(String db, String tableName)
           
 ArrayList<FieldSchema> MetaStoreServer.ThriftMetaStoreHandler.get_fields(String db, String table_name)
           
static List<FieldSchema> MetaStoreUtils.getFieldsFromDeserializer(String tableName, Deserializer deserializer)
           
 

Method parameters in org.apache.hadoop.hive.metastore with type arguments of type FieldSchema
static String MetaStoreUtils.getColumnNamesFromFieldSchema(List<FieldSchema> fieldSchemas)
          Convert FieldSchemas to columnNames.
static String MetaStoreUtils.getColumnTypesFromFieldSchema(List<FieldSchema> fieldSchemas)
          Convert FieldSchemas to columnTypes.
static String MetaStoreUtils.getDDLFromFieldSchema(String structName, List<FieldSchema> fieldSchemas)
          Convert FieldSchemas to Thrift DDL.
static String Warehouse.makePartName(List<FieldSchema> partCols, List<String> vals)
           
static boolean MetaStoreUtils.validateColNames(List<FieldSchema> cols)
           
 

Uses of FieldSchema in org.apache.hadoop.hive.metastore.api
 

Methods in org.apache.hadoop.hive.metastore.api that return types with arguments of type FieldSchema
 List<FieldSchema> ThriftMetaStore.Iface.get_fields(String db_name, String table_name)
           
 List<FieldSchema> ThriftMetaStore.Client.get_fields(String db_name, String table_name)
           
 List<FieldSchema> ThriftHiveMetastore.Iface.get_fields(String db_name, String table_name)
           
 List<FieldSchema> ThriftHiveMetastore.Client.get_fields(String db_name, String table_name)
           
 List<FieldSchema> StorageDescriptor.getCols()
           
 Iterator<FieldSchema> StorageDescriptor.getColsIterator()
           
 List<FieldSchema> Type.getFields()
           
 Iterator<FieldSchema> Type.getFieldsIterator()
           
 List<FieldSchema> Table.getPartitionKeys()
           
 Iterator<FieldSchema> Table.getPartitionKeysIterator()
           
 List<FieldSchema> ThriftMetaStore.get_fields_result.getSuccess()
           
 List<FieldSchema> ThriftHiveMetastore.get_fields_result.getSuccess()
           
 Iterator<FieldSchema> ThriftMetaStore.get_fields_result.getSuccessIterator()
           
 Iterator<FieldSchema> ThriftHiveMetastore.get_fields_result.getSuccessIterator()
           
 List<FieldSchema> ThriftMetaStore.Client.recv_get_fields()
           
 List<FieldSchema> ThriftHiveMetastore.Client.recv_get_fields()
           
 

Methods in org.apache.hadoop.hive.metastore.api with parameters of type FieldSchema
 void StorageDescriptor.addToCols(FieldSchema elem)
           
 void Type.addToFields(FieldSchema elem)
           
 void Table.addToPartitionKeys(FieldSchema elem)
           
 void ThriftMetaStore.get_fields_result.addToSuccess(FieldSchema elem)
           
 void ThriftHiveMetastore.get_fields_result.addToSuccess(FieldSchema elem)
           
 boolean FieldSchema.equals(FieldSchema that)
           
 

Method parameters in org.apache.hadoop.hive.metastore.api with type arguments of type FieldSchema
 void StorageDescriptor.setCols(List<FieldSchema> cols)
           
 void Type.setFields(List<FieldSchema> fields)
           
 void Table.setPartitionKeys(List<FieldSchema> partitionKeys)
           
 void ThriftMetaStore.get_fields_result.setSuccess(List<FieldSchema> success)
           
 void ThriftHiveMetastore.get_fields_result.setSuccess(List<FieldSchema> success)
           
 

Constructor parameters in org.apache.hadoop.hive.metastore.api with type arguments of type FieldSchema
StorageDescriptor(List<FieldSchema> cols, String location, String inputFormat, String outputFormat, boolean compressed, int numBuckets, SerDeInfo serdeInfo, List<String> bucketCols, List<Order> sortCols, Map<String,String> parameters)
           
Table(String tableName, String dbName, String owner, int createTime, int lastAccessTime, int retention, StorageDescriptor sd, List<FieldSchema> partitionKeys, Map<String,String> parameters)
           
ThriftHiveMetastore.get_fields_result(List<FieldSchema> success, MetaException o1, UnknownTableException o2, UnknownDBException o3)
           
ThriftMetaStore.get_fields_result(List<FieldSchema> success, MetaException o1, UnknownTableException o2, UnknownDBException o3)
           
Type(String name, String type1, String type2, List<FieldSchema> fields)
           
 

Uses of FieldSchema in org.apache.hadoop.hive.ql.exec
 

Method parameters in org.apache.hadoop.hive.ql.exec with type arguments of type FieldSchema
static List<String> Utilities.getFieldSchemaString(List<FieldSchema> fl)
           
 

Uses of FieldSchema in org.apache.hadoop.hive.ql.metadata
 

Methods in org.apache.hadoop.hive.ql.metadata that return types with arguments of type FieldSchema
 List<FieldSchema> Table.getAllCols()
          Returns a list of all the columns of the table (data columns + partition columns in that order.
 List<FieldSchema> Table.getCols()
           
static List<FieldSchema> Hive.getFieldsFromDeserializer(String name, Deserializer serde)
           
 List<FieldSchema> Table.getPartCols()
           
 

Method parameters in org.apache.hadoop.hive.ql.metadata with type arguments of type FieldSchema
 void Table.setFields(List<FieldSchema> fields)
           
 void Table.setPartCols(List<FieldSchema> partCols)
           
 

Uses of FieldSchema in org.apache.hadoop.hive.ql.plan
 

Methods in org.apache.hadoop.hive.ql.plan that return types with arguments of type FieldSchema
 List<FieldSchema> createTableDesc.getCols()
           
static List<FieldSchema> PlanUtils.getFieldSchemasFromColumnInfo(Vector<ColumnInfo> cols, String fieldPrefix)
          Convert the ColumnInfo to FieldSchema.
static List<FieldSchema> PlanUtils.getFieldSchemasFromColumnList(ArrayList<exprNodeDesc> cols, String fieldPrefix)
          Convert the ColumnList to FieldSchema list.
static List<FieldSchema> PlanUtils.getFieldSchemasFromRowSchema(RowSchema row, String fieldPrefix)
          Convert the RowSchema to FieldSchema list.
 List<FieldSchema> alterTableDesc.getNewCols()
           
 List<FieldSchema> createTableDesc.getPartCols()
           
 

Method parameters in org.apache.hadoop.hive.ql.plan with type arguments of type FieldSchema
static tableDesc PlanUtils.getBinarySortableTableDesc(List<FieldSchema> fieldSchemas, String order)
          Generate the table descriptor of DynamicSerDe and TBinarySortableProtocol.
static tableDesc PlanUtils.getBinaryTableDesc(List<FieldSchema> fieldSchemas)
          Generate the table descriptor of DynamicSerDe and TBinaryProtocol.
static tableDesc PlanUtils.getLazySimpleSerDeTableDesc(List<FieldSchema> fieldSchemas)
          Generate the table descriptor of LazySimpleSerDe.
 void createTableDesc.setCols(List<FieldSchema> cols)
           
 void alterTableDesc.setNewCols(List<FieldSchema> newCols)
           
 void createTableDesc.setPartCols(List<FieldSchema> partCols)
           
 

Constructor parameters in org.apache.hadoop.hive.ql.plan with type arguments of type FieldSchema
alterTableDesc(String name, List<FieldSchema> newCols, alterTableDesc.alterTableTypes alterType)
           
createTableDesc(String tableName, boolean isExternal, List<FieldSchema> cols, List<FieldSchema> partCols, List<String> bucketCols, List<Order> sortCols, int numBuckets, String fieldDelim, String collItemDelim, String mapKeyDelim, String lineDelim, String comment, String inputFormat, String outputFormat, String location, String serName, Map<String,String> mapProp, boolean ifNotExists)
           
createTableDesc(String tableName, boolean isExternal, List<FieldSchema> cols, List<FieldSchema> partCols, List<String> bucketCols, List<Order> sortCols, int numBuckets, String fieldDelim, String collItemDelim, String mapKeyDelim, String lineDelim, String comment, String inputFormat, String outputFormat, String location, String serName, Map<String,String> mapProp, boolean ifNotExists)
           
 



Copyright © 2009 The Apache Software Foundation