public interface MetaDataFormatter
Modifier and Type | Method and Description |
---|---|
void |
describeTable(DataOutputStream out,
String colPath,
String tableName,
Table tbl,
Partition part,
List<FieldSchema> cols,
boolean isFormatted,
boolean isExt,
boolean isPretty,
boolean isOutputPadded,
List<ColumnStatisticsObj> colStats)
Describe table.
|
void |
error(OutputStream out,
String msg,
int errorCode,
String sqlState)
Write an error message.
|
void |
error(OutputStream out,
String errorMessage,
int errorCode,
String sqlState,
String errorDetail) |
void |
showDatabaseDescription(DataOutputStream out,
String database,
String comment,
String location,
String ownerName,
String ownerType,
Map<String,String> params)
Describe a database.
|
void |
showDatabases(DataOutputStream out,
List<String> databases)
Show the databases
|
void |
showTablePartitons(DataOutputStream out,
List<String> parts)
Show the table partitions.
|
void |
showTables(DataOutputStream out,
Set<String> tables)
Show a list of tables.
|
void |
showTableStatus(DataOutputStream out,
Hive db,
HiveConf conf,
List<Table> tbls,
Map<String,String> part,
Partition par)
Show the table status.
|
void error(OutputStream out, String msg, int errorCode, String sqlState) throws HiveException
sqlState
- if null
, will be ignoredHiveException
void error(OutputStream out, String errorMessage, int errorCode, String sqlState, String errorDetail) throws HiveException
sqlState
- if null
, will be skipped in outputerrorDetail
- usually string version of some Exception, if null
, will be ignoredHiveException
void showTables(DataOutputStream out, Set<String> tables) throws HiveException
HiveException
void describeTable(DataOutputStream out, String colPath, String tableName, Table tbl, Partition part, List<FieldSchema> cols, boolean isFormatted, boolean isExt, boolean isPretty, boolean isOutputPadded, List<ColumnStatisticsObj> colStats) throws HiveException
out
- colPath
- tableName
- tbl
- part
- cols
- isFormatted
- - describe with formatted keywordisExt
- isPretty
- isOutputPadded
- - if true, add spacing and indentationcolStats
- HiveException
void showTableStatus(DataOutputStream out, Hive db, HiveConf conf, List<Table> tbls, Map<String,String> part, Partition par) throws HiveException
HiveException
void showTablePartitons(DataOutputStream out, List<String> parts) throws HiveException
HiveException
void showDatabases(DataOutputStream out, List<String> databases) throws HiveException
HiveException
void showDatabaseDescription(DataOutputStream out, String database, String comment, String location, String ownerName, String ownerType, Map<String,String> params) throws HiveException
HiveException
Copyright © 2017 The Apache Software Foundation. All rights reserved.