/**
* Autogenerated by Thrift Compiler (0.16.0)
*
* DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING
* @generated
*/
package org.apache.hadoop.hive.metastore.api;
@SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"})
@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.16.0)")
@org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class ThriftHiveMetastore {
/**
* This interface is live.
*/
@org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public interface Iface extends com.facebook.fb303.FacebookService.Iface {
public AbortCompactResponse abort_Compactions(AbortCompactionRequest rqst) throws org.apache.thrift.TException;
public java.lang.String getMetaConf(java.lang.String key) throws MetaException, org.apache.thrift.TException;
public void setMetaConf(java.lang.String key, java.lang.String value) throws MetaException, org.apache.thrift.TException;
public void create_catalog(CreateCatalogRequest catalog) throws AlreadyExistsException, InvalidObjectException, MetaException, org.apache.thrift.TException;
public void alter_catalog(AlterCatalogRequest rqst) throws NoSuchObjectException, InvalidOperationException, MetaException, org.apache.thrift.TException;
public GetCatalogResponse get_catalog(GetCatalogRequest catName) throws NoSuchObjectException, MetaException, org.apache.thrift.TException;
public GetCatalogsResponse get_catalogs() throws MetaException, org.apache.thrift.TException;
public void drop_catalog(DropCatalogRequest catName) throws NoSuchObjectException, InvalidOperationException, MetaException, org.apache.thrift.TException;
public void create_database(Database database) throws AlreadyExistsException, InvalidObjectException, MetaException, org.apache.thrift.TException;
public void create_database_req(CreateDatabaseRequest createDatabaseRequest) throws AlreadyExistsException, InvalidObjectException, MetaException, org.apache.thrift.TException;
public Database get_database(java.lang.String name) throws NoSuchObjectException, MetaException, org.apache.thrift.TException;
public Database get_database_req(GetDatabaseRequest request) throws NoSuchObjectException, MetaException, org.apache.thrift.TException;
public void drop_database(java.lang.String name, boolean deleteData, boolean cascade) throws NoSuchObjectException, InvalidOperationException, MetaException, org.apache.thrift.TException;
public void drop_database_req(DropDatabaseRequest req) throws NoSuchObjectException, InvalidOperationException, MetaException, org.apache.thrift.TException;
public java.util.List<java.lang.String> get_databases(java.lang.String pattern) throws MetaException, org.apache.thrift.TException;
public java.util.List<java.lang.String> get_all_databases() throws MetaException, org.apache.thrift.TException;
public void alter_database(java.lang.String dbname, Database db) throws MetaException, NoSuchObjectException, org.apache.thrift.TException;
public void alter_database_req(AlterDatabaseRequest alterDbReq) throws MetaException, NoSuchObjectException, org.apache.thrift.TException;
public void create_dataconnector_req(CreateDataConnectorRequest connectorReq) throws AlreadyExistsException, InvalidObjectException, MetaException, org.apache.thrift.TException;
public DataConnector get_dataconnector_req(GetDataConnectorRequest request) throws NoSuchObjectException, MetaException, org.apache.thrift.TException;
public void drop_dataconnector_req(DropDataConnectorRequest dropDcReq) throws NoSuchObjectException, InvalidOperationException, MetaException, org.apache.thrift.TException;
public java.util.List<java.lang.String> get_dataconnectors() throws MetaException, org.apache.thrift.TException;
public void alter_dataconnector_req(AlterDataConnectorRequest alterReq) throws MetaException, NoSuchObjectException, org.apache.thrift.TException;
public Type get_type(java.lang.String name) throws MetaException, NoSuchObjectException, org.apache.thrift.TException;
public boolean create_type(Type type) throws AlreadyExistsException, InvalidObjectException, MetaException, org.apache.thrift.TException;
public boolean drop_type(java.lang.String type) throws MetaException, NoSuchObjectException, org.apache.thrift.TException;
public java.util.Map<java.lang.String,Type> get_type_all(java.lang.String name) throws MetaException, org.apache.thrift.TException;
public java.util.List<FieldSchema> get_fields(java.lang.String db_name, java.lang.String table_name) throws MetaException, UnknownTableException, UnknownDBException, org.apache.thrift.TException;
public java.util.List<FieldSchema> get_fields_with_environment_context(java.lang.String db_name, java.lang.String table_name, EnvironmentContext environment_context) throws MetaException, UnknownTableException, UnknownDBException, org.apache.thrift.TException;
public GetFieldsResponse get_fields_req(GetFieldsRequest req) throws MetaException, UnknownTableException, UnknownDBException, org.apache.thrift.TException;
public java.util.List<FieldSchema> get_schema(java.lang.String db_name, java.lang.String table_name) throws MetaException, UnknownTableException, UnknownDBException, org.apache.thrift.TException;
public java.util.List<FieldSchema> get_schema_with_environment_context(java.lang.String db_name, java.lang.String table_name, EnvironmentContext environment_context) throws MetaException, UnknownTableException, UnknownDBException, org.apache.thrift.TException;
public GetSchemaResponse get_schema_req(GetSchemaRequest req) throws MetaException, UnknownTableException, UnknownDBException, org.apache.thrift.TException;
public void create_table(Table tbl) throws AlreadyExistsException, InvalidObjectException, MetaException, NoSuchObjectException, org.apache.thrift.TException;
public void create_table_with_environment_context(Table tbl, EnvironmentContext environment_context) throws AlreadyExistsException, InvalidObjectException, MetaException, NoSuchObjectException, org.apache.thrift.TException;
public void create_table_with_constraints(Table tbl, java.util.List<SQLPrimaryKey> primaryKeys, java.util.List<SQLForeignKey> foreignKeys, java.util.List<SQLUniqueConstraint> uniqueConstraints, java.util.List<SQLNotNullConstraint> notNullConstraints, java.util.List<SQLDefaultConstraint> defaultConstraints, java.util.List<SQLCheckConstraint> checkConstraints) throws AlreadyExistsException, InvalidObjectException, MetaException, NoSuchObjectException, org.apache.thrift.TException;
public void create_table_req(CreateTableRequest request) throws AlreadyExistsException, InvalidObjectException, MetaException, NoSuchObjectException, org.apache.thrift.TException;
public void drop_constraint(DropConstraintRequest req) throws NoSuchObjectException, MetaException, org.apache.thrift.TException;
public void add_primary_key(AddPrimaryKeyRequest req) throws NoSuchObjectException, MetaException, org.apache.thrift.TException;
public void add_foreign_key(AddForeignKeyRequest req) throws NoSuchObjectException, MetaException, org.apache.thrift.TException;
public void add_unique_constraint(AddUniqueConstraintRequest req) throws NoSuchObjectException, MetaException, org.apache.thrift.TException;
public void add_not_null_constraint(AddNotNullConstraintRequest req) throws NoSuchObjectException, MetaException, org.apache.thrift.TException;
public void add_default_constraint(AddDefaultConstraintRequest req) throws NoSuchObjectException, MetaException, org.apache.thrift.TException;
public void add_check_constraint(AddCheckConstraintRequest req) throws NoSuchObject
没有合适的资源?快使用搜索试试~ 我知道了~
资源推荐
资源详情
资源评论




















收起资源包目录





































































































共 2000 条
- 1
- 2
- 3
- 4
- 5
- 6
- 20
资源评论


baidu_16992441
- 粉丝: 313
上传资源 快速赚钱
我的内容管理 展开
我的资源 快来上传第一个资源
我的收益
登录查看自己的收益我的积分 登录查看自己的积分
我的C币 登录后查看C币余额
我的收藏
我的下载
下载帮助


最新资源
- 光孤子的形成与光通信中应用.doc
- 2022年网络课程在线测试系统的设计.doc
- 综合布线投标方案样本.doc
- (精品)操作系统(宗大华版)课后习题答案.doc
- 自适应神经网络专家讲座.pptx
- 嵌入式工程师笔试题.doc
- (源码)基于STM32的MobiFlight固件.zip
- 智慧类信息化项目交流材料ppt课件.ppt
- 建设工程监理与项目管理一体化发展.docx
- Python电子教案61组合数据类型.pptx
- 酒业公司研发项目管理流程.ppt
- 软件销售协议书.doc
- 下半年系统集成项目管理工程师考试上午真题.doc
- 网络与信息安全应急处置预案.doc
- 电子商务平台系统需求分析报告.doc
- 机械中文数据库检索.pptx
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈



安全验证
文档复制为VIP权益,开通VIP直接复制
