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

x33g5p2x  于2022-01-26 转载在 其他  
字(5.1k)|赞(0)|评价(0)|浏览(105)

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

Partition.isSetPrivileges介绍

[英]Returns true if field privileges is set (has been assigned a value) and false otherwise
[中]如果设置了字段权限(已分配值),则返回true,否则返回false

代码示例

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

if (isSetPrivileges()) {
 if (!first) sb.append(", ");
 sb.append("privileges:");

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

list.add(parameters);
boolean present_privileges = true && (isSetPrivileges());
list.add(present_privileges);
if (present_privileges)

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

if (struct.isSetPrivileges()) {
 oprot.writeFieldBegin(PRIVILEGES_FIELD_DESC);
 struct.privileges.write(oprot);

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

lastComparison = Boolean.valueOf(isSetPrivileges()).compareTo(other.isSetPrivileges());
if (lastComparison != 0) {
 return lastComparison;
if (isSetPrivileges()) {
 lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.privileges, other.privileges);
 if (lastComparison != 0) {

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

optionals.set(6);
if (struct.isSetPrivileges()) {
 optionals.set(7);
if (struct.isSetPrivileges()) {
 struct.privileges.write(oprot);

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

return isSetParameters();
case PRIVILEGES:
 return isSetPrivileges();
case CAT_NAME:
 return isSetCatName();

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

this.parameters = __this__parameters;
if (other.isSetPrivileges()) {
 this.privileges = new PrincipalPrivilegeSet(other.privileges);

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

boolean this_present_privileges = true && this.isSetPrivileges();
boolean that_present_privileges = true && that.isSetPrivileges();
if (this_present_privileges || that_present_privileges) {
 if (!(this_present_privileges && that_present_privileges))

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

if (isSetPrivileges()) {
 if (!first) sb.append(", ");
 sb.append("privileges:");

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

builder.append(parameters);
boolean present_privileges = true && (isSetPrivileges());
builder.append(present_privileges);
if (present_privileges)

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

if (struct.isSetPrivileges()) {
 oprot.writeFieldBegin(PRIVILEGES_FIELD_DESC);
 struct.privileges.write(oprot);

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

if (struct.isSetPrivileges()) {
 oprot.writeFieldBegin(PRIVILEGES_FIELD_DESC);
 struct.privileges.write(oprot);

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

if (other.isSetPrivileges()) {
 this.privileges = new PrincipalPrivilegeSet(other.privileges);

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

if (other.isSetPrivileges()) {
 this.privileges = new PrincipalPrivilegeSet(other.privileges);

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

if (other.isSetPrivileges()) {
 this.privileges = new PrincipalPrivilegeSet(other.privileges);

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

/** Returns true if field corresponding to fieldID is set (has been asigned a value) and false otherwise */
public boolean isSet(_Fields field) {
 if (field == null) {
  throw new IllegalArgumentException();
 }
 switch (field) {
 case VALUES:
  return isSetValues();
 case DB_NAME:
  return isSetDbName();
 case TABLE_NAME:
  return isSetTableName();
 case CREATE_TIME:
  return isSetCreateTime();
 case LAST_ACCESS_TIME:
  return isSetLastAccessTime();
 case SD:
  return isSetSd();
 case PARAMETERS:
  return isSetParameters();
 case PRIVILEGES:
  return isSetPrivileges();
 }
 throw new IllegalStateException();
}

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

/** Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise */
public boolean isSet(_Fields field) {
 if (field == null) {
  throw new IllegalArgumentException();
 }
 switch (field) {
 case VALUES:
  return isSetValues();
 case DB_NAME:
  return isSetDbName();
 case TABLE_NAME:
  return isSetTableName();
 case CREATE_TIME:
  return isSetCreateTime();
 case LAST_ACCESS_TIME:
  return isSetLastAccessTime();
 case SD:
  return isSetSd();
 case PARAMETERS:
  return isSetParameters();
 case PRIVILEGES:
  return isSetPrivileges();
 }
 throw new IllegalStateException();
}

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

/** Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise */
public boolean isSet(_Fields field) {
 if (field == null) {
  throw new IllegalArgumentException();
 }
 switch (field) {
 case VALUES:
  return isSetValues();
 case DB_NAME:
  return isSetDbName();
 case TABLE_NAME:
  return isSetTableName();
 case CREATE_TIME:
  return isSetCreateTime();
 case LAST_ACCESS_TIME:
  return isSetLastAccessTime();
 case SD:
  return isSetSd();
 case PARAMETERS:
  return isSetParameters();
 case PRIVILEGES:
  return isSetPrivileges();
 }
 throw new IllegalStateException();
}

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

boolean this_present_privileges = true && this.isSetPrivileges();
boolean that_present_privileges = true && that.isSetPrivileges();
if (this_present_privileges || that_present_privileges) {
 if (!(this_present_privileges && that_present_privileges))

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

builder.append(parameters);
boolean present_privileges = true && (isSetPrivileges());
builder.append(present_privileges);
if (present_privileges)

相关文章

微信公众号

最新文章

更多

Partition类方法