org.apache.hadoop.hive.metastore.api.HiveObjectPrivilege.validate()方法的使用及代码示例

x33g5p2x  于2022-01-20 转载在 其他  
字(3.4k)|赞(0)|评价(0)|浏览(89)

本文整理了Java中org.apache.hadoop.hive.metastore.api.HiveObjectPrivilege.validate()方法的一些代码示例,展示了HiveObjectPrivilege.validate()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。HiveObjectPrivilege.validate()方法的具体详情如下:
包路径:org.apache.hadoop.hive.metastore.api.HiveObjectPrivilege
类名称:HiveObjectPrivilege
方法名:validate

HiveObjectPrivilege.validate介绍

暂无

代码示例

代码示例来源:origin: apache/hive

public void write(org.apache.thrift.protocol.TProtocol oprot, HiveObjectPrivilege struct) throws org.apache.thrift.TException {
 struct.validate();

代码示例来源:origin: apache/hive

struct.validate();

代码示例来源:origin: com.facebook.presto.hive/hive-apache

public void write(org.apache.thrift.protocol.TProtocol oprot, HiveObjectPrivilege struct) throws org.apache.thrift.TException {
 struct.validate();
 oprot.writeStructBegin(STRUCT_DESC);
 if (struct.hiveObject != null) {
  oprot.writeFieldBegin(HIVE_OBJECT_FIELD_DESC);
  struct.hiveObject.write(oprot);
  oprot.writeFieldEnd();
 }
 if (struct.principalName != null) {
  oprot.writeFieldBegin(PRINCIPAL_NAME_FIELD_DESC);
  oprot.writeString(struct.principalName);
  oprot.writeFieldEnd();
 }
 if (struct.principalType != null) {
  oprot.writeFieldBegin(PRINCIPAL_TYPE_FIELD_DESC);
  oprot.writeI32(struct.principalType.getValue());
  oprot.writeFieldEnd();
 }
 if (struct.grantInfo != null) {
  oprot.writeFieldBegin(GRANT_INFO_FIELD_DESC);
  struct.grantInfo.write(oprot);
  oprot.writeFieldEnd();
 }
 oprot.writeFieldStop();
 oprot.writeStructEnd();
}

代码示例来源:origin: org.spark-project.hive/hive-metastore

public void write(org.apache.thrift.protocol.TProtocol oprot, HiveObjectPrivilege struct) throws org.apache.thrift.TException {
 struct.validate();
 oprot.writeStructBegin(STRUCT_DESC);
 if (struct.hiveObject != null) {
  oprot.writeFieldBegin(HIVE_OBJECT_FIELD_DESC);
  struct.hiveObject.write(oprot);
  oprot.writeFieldEnd();
 }
 if (struct.principalName != null) {
  oprot.writeFieldBegin(PRINCIPAL_NAME_FIELD_DESC);
  oprot.writeString(struct.principalName);
  oprot.writeFieldEnd();
 }
 if (struct.principalType != null) {
  oprot.writeFieldBegin(PRINCIPAL_TYPE_FIELD_DESC);
  oprot.writeI32(struct.principalType.getValue());
  oprot.writeFieldEnd();
 }
 if (struct.grantInfo != null) {
  oprot.writeFieldBegin(GRANT_INFO_FIELD_DESC);
  struct.grantInfo.write(oprot);
  oprot.writeFieldEnd();
 }
 oprot.writeFieldStop();
 oprot.writeStructEnd();
}

代码示例来源:origin: org.apache.hadoop.hive/hive-metastore

public void write(TProtocol oprot) throws TException {
 validate();
 oprot.writeStructBegin(STRUCT_DESC);
 if (this.hiveObject != null) {
  oprot.writeFieldBegin(HIVE_OBJECT_FIELD_DESC);
  this.hiveObject.write(oprot);
  oprot.writeFieldEnd();
 }
 if (this.principalName != null) {
  oprot.writeFieldBegin(PRINCIPAL_NAME_FIELD_DESC);
  oprot.writeString(this.principalName);
  oprot.writeFieldEnd();
 }
 if (this.principalType != null) {
  oprot.writeFieldBegin(PRINCIPAL_TYPE_FIELD_DESC);
  oprot.writeI32(this.principalType.getValue());
  oprot.writeFieldEnd();
 }
 if (this.grantInfo != null) {
  oprot.writeFieldBegin(GRANT_INFO_FIELD_DESC);
  this.grantInfo.write(oprot);
  oprot.writeFieldEnd();
 }
 oprot.writeFieldStop();
 oprot.writeStructEnd();
}

代码示例来源:origin: org.apache.hive/hive-standalone-metastore

public void write(org.apache.thrift.protocol.TProtocol oprot, HiveObjectPrivilege struct) throws org.apache.thrift.TException {
 struct.validate();

代码示例来源:origin: org.apache.hadoop.hive/hive-metastore

validate();

代码示例来源:origin: org.apache.hive/hive-standalone-metastore

struct.validate();

代码示例来源:origin: com.facebook.presto.hive/hive-apache

struct.validate();

代码示例来源:origin: org.spark-project.hive/hive-metastore

struct.validate();

相关文章

微信公众号

最新文章

更多