|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Table | |
---|---|
org.apache.hadoop.hive.metastore | |
org.apache.hadoop.hive.metastore.api | |
org.apache.hadoop.hive.metastore.events | |
org.apache.hadoop.hive.metastore.parser | This package implements the parser for parsing the string filter for the listPartitionsByFilter API. |
org.apache.hadoop.hive.ql.hooks | |
org.apache.hadoop.hive.ql.index | |
org.apache.hadoop.hive.ql.index.bitmap | |
org.apache.hadoop.hive.ql.index.compact | |
org.apache.hadoop.hive.ql.metadata | |
org.apache.hadoop.hive.ql.parse |
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 |
RawStore.getTable(String dbName,
String tableName)
|
Table |
IMetaStoreClient.getTable(String dbName,
String tableName)
Get a table object. |
Table |
HiveMetaStoreClient.getTable(String dbname,
String name)
|
Table |
ObjectStore.getTable(String dbName,
String tableName)
|
Table |
RawStore.markPartitionForEvent(String dbName,
String tblName,
Map<String,String> partVals,
PartitionEventType evtType)
|
Table |
ObjectStore.markPartitionForEvent(String dbName,
String tblName,
Map<String,String> partName,
PartitionEventType evtType)
|
Methods in org.apache.hadoop.hive.metastore that return types with arguments of type Table | |
---|---|
List<Table> |
HiveMetaStore.HMSHandler.get_table_objects_by_name(String dbname,
List<String> names)
Gets multiple tables from the hive metastore. |
List<Table> |
RawStore.getTableObjectsByName(String dbname,
List<String> tableNames)
|
List<Table> |
IMetaStoreClient.getTableObjectsByName(String dbName,
List<String> tableNames)
|
List<Table> |
HiveMetaStoreClient.getTableObjectsByName(String dbName,
List<String> tableNames)
|
List<Table> |
ObjectStore.getTableObjectsByName(String db,
List<String> tbl_names)
|
Methods in org.apache.hadoop.hive.metastore with parameters of type Table | |
---|---|
Index |
HiveMetaStore.HMSHandler.add_index(Index newIndex,
Table indexTable)
|
void |
HiveMetaStore.HMSHandler.alter_table(String dbname,
String name,
Table newTable)
|
void |
IMetaStoreClient.alter_table(String defaultDatabaseName,
String tblName,
Table table)
|
void |
HiveMetaStoreClient.alter_table(String dbname,
String tbl_name,
Table new_tbl)
|
void |
HiveAlterHandler.alterTable(RawStore msdb,
Warehouse wh,
String dbname,
String name,
Table newt)
|
void |
AlterHandler.alterTable(RawStore msdb,
Warehouse wh,
String dbname,
String name,
Table newTable)
handles alter table |
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.createIndex(Index index,
Table indexTable)
create an index |
void |
HiveMetaStoreClient.createIndex(Index index,
Table indexTable)
create an index |
void |
RawStore.createTable(Table tbl)
|
void |
IMetaStoreClient.createTable(Table tbl)
|
void |
HiveMetaStoreClient.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.isIndexTable(Table 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.deepCopy()
|
Table |
ThriftHiveMetastore.Iface.get_table(String dbname,
String tbl_name)
|
Table |
ThriftHiveMetastore.Client.get_table(String dbname,
String tbl_name)
|
Table |
ThriftHiveMetastore.add_index_args.getIndex_table()
|
Table |
ThriftHiveMetastore.alter_table_args.getNew_tbl()
|
Table |
ThriftHiveMetastore.AsyncClient.get_table_call.getResult()
|
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 that return types with arguments of type Table | |
---|---|
List<Table> |
ThriftHiveMetastore.Iface.get_table_objects_by_name(String dbname,
List<String> tbl_names)
|
List<Table> |
ThriftHiveMetastore.Client.get_table_objects_by_name(String dbname,
List<String> tbl_names)
|
List<Table> |
ThriftHiveMetastore.AsyncClient.get_table_objects_by_name_call.getResult()
|
List<Table> |
ThriftHiveMetastore.get_table_objects_by_name_result.getSuccess()
|
Iterator<Table> |
ThriftHiveMetastore.get_table_objects_by_name_result.getSuccessIterator()
|
List<Table> |
ThriftHiveMetastore.Client.recv_get_table_objects_by_name()
|
Methods in org.apache.hadoop.hive.metastore.api with parameters of type Table | |
---|---|
Index |
ThriftHiveMetastore.Iface.add_index(Index new_index,
Table index_table)
|
Index |
ThriftHiveMetastore.Client.add_index(Index new_index,
Table index_table)
|
void |
ThriftHiveMetastore.AsyncIface.add_index(Index new_index,
Table index_table,
org.apache.thrift.async.AsyncMethodCallback<ThriftHiveMetastore.AsyncClient.add_index_call> resultHandler)
|
void |
ThriftHiveMetastore.AsyncClient.add_index(Index new_index,
Table index_table,
org.apache.thrift.async.AsyncMethodCallback<ThriftHiveMetastore.AsyncClient.add_index_call> resultHandler)
|
void |
ThriftHiveMetastore.get_table_objects_by_name_result.addToSuccess(Table elem)
|
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.AsyncIface.alter_table(String dbname,
String tbl_name,
Table new_tbl,
org.apache.thrift.async.AsyncMethodCallback<ThriftHiveMetastore.AsyncClient.alter_table_call> resultHandler)
|
void |
ThriftHiveMetastore.AsyncClient.alter_table(String dbname,
String tbl_name,
Table new_tbl,
org.apache.thrift.async.AsyncMethodCallback<ThriftHiveMetastore.AsyncClient.alter_table_call> resultHandler)
|
int |
Table.compareTo(Table other)
|
void |
ThriftHiveMetastore.Iface.create_table(Table tbl)
|
void |
ThriftHiveMetastore.Client.create_table(Table tbl)
|
void |
ThriftHiveMetastore.AsyncIface.create_table(Table tbl,
org.apache.thrift.async.AsyncMethodCallback<ThriftHiveMetastore.AsyncClient.create_table_call> resultHandler)
|
void |
ThriftHiveMetastore.AsyncClient.create_table(Table tbl,
org.apache.thrift.async.AsyncMethodCallback<ThriftHiveMetastore.AsyncClient.create_table_call> resultHandler)
|
boolean |
Table.equals(Table that)
|
void |
ThriftHiveMetastore.Client.send_add_index(Index new_index,
Table index_table)
|
void |
ThriftHiveMetastore.Client.send_alter_table(String dbname,
String tbl_name,
Table new_tbl)
|
void |
ThriftHiveMetastore.Client.send_create_table(Table tbl)
|
void |
ThriftHiveMetastore.add_index_args.setIndex_table(Table index_table)
|
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)
|
Method parameters in org.apache.hadoop.hive.metastore.api with type arguments of type Table | |
---|---|
void |
ThriftHiveMetastore.get_table_objects_by_name_result.setSuccess(List<Table> success)
|
Constructors in org.apache.hadoop.hive.metastore.api with parameters of type Table | |
---|---|
Table(Table other)
Performs a deep copy on other. |
|
ThriftHiveMetastore.add_index_args(Index new_index,
Table index_table)
|
|
ThriftHiveMetastore.alter_table_args(String dbname,
String tbl_name,
Table new_tbl)
|
|
ThriftHiveMetastore.AsyncClient.add_index_call(Index new_index,
Table index_table,
org.apache.thrift.async.AsyncMethodCallback<ThriftHiveMetastore.AsyncClient.add_index_call> resultHandler,
org.apache.thrift.async.TAsyncClient client,
org.apache.thrift.protocol.TProtocolFactory protocolFactory,
org.apache.thrift.transport.TNonblockingTransport transport)
|
|
ThriftHiveMetastore.AsyncClient.alter_table_call(String dbname,
String tbl_name,
Table new_tbl,
org.apache.thrift.async.AsyncMethodCallback<ThriftHiveMetastore.AsyncClient.alter_table_call> resultHandler,
org.apache.thrift.async.TAsyncClient client,
org.apache.thrift.protocol.TProtocolFactory protocolFactory,
org.apache.thrift.transport.TNonblockingTransport transport)
|
|
ThriftHiveMetastore.AsyncClient.create_table_call(Table tbl,
org.apache.thrift.async.AsyncMethodCallback<ThriftHiveMetastore.AsyncClient.create_table_call> resultHandler,
org.apache.thrift.async.TAsyncClient client,
org.apache.thrift.protocol.TProtocolFactory protocolFactory,
org.apache.thrift.transport.TNonblockingTransport transport)
|
|
ThriftHiveMetastore.create_table_args(Table tbl)
|
|
ThriftHiveMetastore.get_table_result(Table success,
MetaException o1,
NoSuchObjectException o2)
|
Constructor parameters in org.apache.hadoop.hive.metastore.api with type arguments of type Table | |
---|---|
ThriftHiveMetastore.get_table_objects_by_name_result(List<Table> success,
MetaException o1,
InvalidOperationException o2,
UnknownDBException o3)
|
Uses of Table in org.apache.hadoop.hive.metastore.events |
---|
Methods in org.apache.hadoop.hive.metastore.events that return Table | |
---|---|
Table |
AlterTableEvent.getNewTable()
|
Table |
AlterTableEvent.getOldTable()
|
Table |
CreateTableEvent.getTable()
|
Table |
LoadPartitionDoneEvent.getTable()
|
Table |
DropTableEvent.getTable()
|
Constructors in org.apache.hadoop.hive.metastore.events with parameters of type Table | |
---|---|
AlterTableEvent(Table oldTable,
Table newTable,
boolean status,
HiveMetaStore.HMSHandler handler)
|
|
CreateTableEvent(Table table,
boolean status,
HiveMetaStore.HMSHandler handler)
|
|
DropTableEvent(Table table,
boolean status,
HiveMetaStore.HMSHandler handler)
|
|
LoadPartitionDoneEvent(boolean status,
HiveMetaStore.HMSHandler handler,
Table table,
Map<String,String> partSpec)
|
Uses of Table in org.apache.hadoop.hive.metastore.parser |
---|
Methods in org.apache.hadoop.hive.metastore.parser with parameters of type Table | |
---|---|
String |
ExpressionTree.generateJDOFilter(Table table,
Map<String,Object> params)
Generate the JDOQL filter for the given expression tree |
String |
ExpressionTree.TreeNode.generateJDOFilter(Table table,
Map<String,Object> params)
Generates a JDO filter statement |
String |
ExpressionTree.LeafNode.generateJDOFilter(Table table,
Map<String,Object> params)
|
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.index |
---|
Methods in org.apache.hadoop.hive.ql.index with parameters of type Table | |
---|---|
void |
AggregateIndexHandler.analyzeIndexDefinition(Table baseTable,
Index idx,
Table indexTable)
|
void |
HiveIndexHandler.analyzeIndexDefinition(Table baseTable,
Index index,
Table indexTable)
Requests that the handler validate an index definition and fill in additional information about its stored representation. |
Uses of Table in org.apache.hadoop.hive.ql.index.bitmap |
---|
Methods in org.apache.hadoop.hive.ql.index.bitmap with parameters of type Table | |
---|---|
void |
BitmapIndexHandler.analyzeIndexDefinition(Table baseTable,
Index index,
Table indexTable)
|
Uses of Table in org.apache.hadoop.hive.ql.index.compact |
---|
Methods in org.apache.hadoop.hive.ql.index.compact with parameters of type Table | |
---|---|
void |
CompactIndexHandler.analyzeIndexDefinition(Table baseTable,
Index index,
Table indexTable)
|
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)
|
Uses of Table in org.apache.hadoop.hive.ql.parse |
---|
Methods in org.apache.hadoop.hive.ql.parse that return types with arguments of type Table | |
---|---|
static Map.Entry<Table,List<Partition>> |
EximUtil.readMetaData(org.apache.hadoop.fs.FileSystem fs,
org.apache.hadoop.fs.Path metadataPath)
|
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |