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

Packages that use Table
org.apache.hadoop.hive.metastore   
org.apache.hadoop.hive.metastore.api   
org.apache.hadoop.hive.ql.hooks   
org.apache.hadoop.hive.ql.metadata   
 

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

Methods in org.apache.hadoop.hive.metastore that return Table
static Table MetaStoreUtils.createColumnsetSchema(String name, List<String> columns, List<String> partCols, org.apache.hadoop.conf.Configuration conf)
           
 Table HiveMetaStore.HMSHandler.get_table(String dbname, String name)
           
 Table IMetaStoreClient.getTable(String tableName)
          Deprecated. As of release 0.6.0 replaced by IMetaStoreClient.getTable(String, String). This method will be removed in release 0.7.0.
 Table HiveMetaStoreClient.getTable(String tableName)
          Deprecated. 
 Table IMetaStoreClient.getTable(String dbName, String tableName)
          Get a table object.
 Table HiveMetaStoreClient.getTable(String dbname, String name)
           
 Table RawStore.getTable(String dbName, String tableName)
           
 Table ObjectStore.getTable(String dbName, String tableName)
           
 

Methods in org.apache.hadoop.hive.metastore with parameters of type Table
 void IMetaStoreClient.alter_table(String defaultDatabaseName, String tblName, Table table)
           
 void HiveMetaStoreClient.alter_table(String dbname, String tbl_name, Table new_tbl)
           
 void HiveMetaStore.HMSHandler.alter_table(String dbname, String name, Table newTable)
           
 void AlterHandler.alterTable(RawStore msdb, Warehouse wh, String dbname, String name, Table newTable)
          handles alter table
 void HiveAlterHandler.alterTable(RawStore msdb, Warehouse wh, String dbname, String name, Table newt)
           
 void RawStore.alterTable(String dbname, String name, Table newTable)
           
 void ObjectStore.alterTable(String dbname, String name, Table newTable)
           
 void HiveMetaHook.commitCreateTable(Table table)
          Called after successfully adding a new table definition to the metastore during CREATE TABLE.
 void HiveMetaHook.commitDropTable(Table table, boolean deleteData)
          Called after successfully removing a table definition from the metastore during DROP TABLE.
 void HiveMetaStore.HMSHandler.create_table(Table tbl)
           
 void IMetaStoreClient.createTable(Table tbl)
           
 void HiveMetaStoreClient.createTable(Table tbl)
           
 void RawStore.createTable(Table tbl)
           
 void ObjectStore.createTable(Table tbl)
           
static Deserializer MetaStoreUtils.getDeserializer(org.apache.hadoop.conf.Configuration conf, Partition part, Table table)
          getDeserializer Get the Deserializer for a partition.
static Deserializer MetaStoreUtils.getDeserializer(org.apache.hadoop.conf.Configuration conf, Table table)
          getDeserializer Get the Deserializer for a table.
 HiveMetaHook HiveMetaHookLoader.getHook(Table tbl)
          Loads a hook for the specified table.
static Properties MetaStoreUtils.getSchema(Partition part, Table table)
           
static Properties MetaStoreUtils.getSchema(Table table)
           
static boolean MetaStoreUtils.isExternalTable(Table table)
          Determines whether a table is an external table.
static boolean MetaStoreUtils.isNonNativeTable(Table table)
           
 void HiveMetaHook.preCreateTable(Table table)
          Called before a new table definition is added to the metastore during CREATE TABLE.
 void HiveMetaHook.preDropTable(Table table)
          Called before a table definition is removed from the metastore during DROP TABLE.
 void HiveMetaHook.rollbackCreateTable(Table table)
          Called after failure adding a new table definition to the metastore during CREATE TABLE.
 void HiveMetaHook.rollbackDropTable(Table table)
          Called after failure removing a table definition from the metastore during DROP TABLE.
 

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

Methods in org.apache.hadoop.hive.metastore.api that return Table
 Table Table.clone()
           
 Table ThriftHiveMetastore.Iface.get_table(String dbname, String tbl_name)
           
 Table ThriftHiveMetastore.Client.get_table(String dbname, String tbl_name)
           
 Table ThriftHiveMetastore.alter_table_args.getNew_tbl()
           
 Table ThriftHiveMetastore.get_table_result.getSuccess()
           
 Table ThriftHiveMetastore.create_table_args.getTbl()
           
 Table ThriftHiveMetastore.Client.recv_get_table()
           
 

Methods in org.apache.hadoop.hive.metastore.api with parameters of type Table
 void ThriftHiveMetastore.Iface.alter_table(String dbname, String tbl_name, Table new_tbl)
           
 void ThriftHiveMetastore.Client.alter_table(String dbname, String tbl_name, Table new_tbl)
           
 void ThriftHiveMetastore.Iface.create_table(Table tbl)
           
 void ThriftHiveMetastore.Client.create_table(Table tbl)
           
 boolean Table.equals(Table that)
           
 void ThriftHiveMetastore.Client.send_alter_table(String dbname, String tbl_name, Table new_tbl)
           
 void ThriftHiveMetastore.Client.send_create_table(Table tbl)
           
 void ThriftHiveMetastore.alter_table_args.setNew_tbl(Table new_tbl)
           
 void ThriftHiveMetastore.get_table_result.setSuccess(Table success)
           
 void ThriftHiveMetastore.create_table_args.setTbl(Table tbl)
           
 

Constructors in org.apache.hadoop.hive.metastore.api with parameters of type Table
Table(Table other)
          Performs a deep copy on other.
ThriftHiveMetastore.alter_table_args(String dbname, String tbl_name, Table new_tbl)
           
ThriftHiveMetastore.create_table_args(Table tbl)
           
ThriftHiveMetastore.get_table_result(Table success, MetaException o1, NoSuchObjectException o2)
           
 

Uses of Table in org.apache.hadoop.hive.ql.hooks
 

Methods in org.apache.hadoop.hive.ql.hooks that return Table
 Table LineageInfo.DataContainer.getTable()
           
 Table LineageInfo.TableAliasInfo.getTable()
           
 

Methods in org.apache.hadoop.hive.ql.hooks with parameters of type Table
 void LineageInfo.TableAliasInfo.setTable(Table table)
           
 

Constructors in org.apache.hadoop.hive.ql.hooks with parameters of type Table
LineageInfo.DataContainer(Table tab)
          Constructor for non partitioned tables.
LineageInfo.DataContainer(Table tab, Partition part)
          Constructor for a partitioned tables partition.
 

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

Methods in org.apache.hadoop.hive.ql.metadata that return Table
 Table Table.getTTable()
          This function should only be used in serialization.
 

Methods in org.apache.hadoop.hive.ql.metadata with parameters of type Table
 void Table.setTTable(Table tTable)
          This function should only be called by Java serialization.
 

Constructors in org.apache.hadoop.hive.ql.metadata with parameters of type Table
Table(Table table)
           
 



Copyright © 2010 The Apache Software Foundation