本文整理了Java中org.apache.hadoop.hive.metastore.api.Table.isSetRetention()
方法的一些代码示例,展示了Table.isSetRetention()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Table.isSetRetention()
方法的具体详情如下:
包路径:org.apache.hadoop.hive.metastore.api.Table
类名称:Table
方法名:isSetRetention
[英]Returns true if field retention is set (has been assigned a value) and false otherwise
[中]如果设置了字段保留(已指定值),则返回true,否则返回false
代码示例来源:origin: apache/hive
lastComparison = Boolean.valueOf(isSetRetention()).compareTo(other.isSetRetention());
if (lastComparison != 0) {
return lastComparison;
if (isSetRetention()) {
lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.retention, other.retention);
if (lastComparison != 0) {
代码示例来源:origin: apache/incubator-gobblin
private static State getTableProps(Table table) {
State tableProps = new State();
for (Map.Entry<String, String> entry : table.getParameters().entrySet()) {
tableProps.setProp(entry.getKey(), entry.getValue());
}
if (table.isSetCreateTime()) {
tableProps.setProp(HiveConstants.CREATE_TIME, table.getCreateTime());
}
if (table.isSetLastAccessTime()) {
tableProps.setProp(HiveConstants.LAST_ACCESS_TIME, table.getCreateTime());
}
if (table.isSetOwner()) {
tableProps.setProp(HiveConstants.OWNER, table.getOwner());
}
if (table.isSetTableType()) {
tableProps.setProp(HiveConstants.TABLE_TYPE, table.getTableType());
}
if (table.isSetRetention()) {
tableProps.setProp(HiveConstants.RETENTION, table.getRetention());
}
return tableProps;
}
代码示例来源:origin: apache/hive
optionals.set(5);
if (struct.isSetRetention()) {
optionals.set(6);
oprot.writeI32(struct.lastAccessTime);
if (struct.isSetRetention()) {
oprot.writeI32(struct.retention);
代码示例来源:origin: apache/hive
return isSetLastAccessTime();
case RETENTION:
return isSetRetention();
case SD:
return isSetSd();
代码示例来源:origin: org.apache.hadoop.hive/hive-metastore
lastComparison = Boolean.valueOf(isSetRetention()).compareTo(typedOther.isSetRetention());
if (lastComparison != 0) {
return lastComparison;
if (isSetRetention()) {
lastComparison = TBaseHelper.compareTo(this.retention, typedOther.retention);
if (lastComparison != 0) {
代码示例来源:origin: org.spark-project.hive/hive-metastore
lastComparison = Boolean.valueOf(isSetRetention()).compareTo(typedOther.isSetRetention());
if (lastComparison != 0) {
return lastComparison;
if (isSetRetention()) {
lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.retention, typedOther.retention);
if (lastComparison != 0) {
代码示例来源:origin: com.facebook.presto.hive/hive-apache
lastComparison = Boolean.valueOf(isSetRetention()).compareTo(typedOther.isSetRetention());
if (lastComparison != 0) {
return lastComparison;
if (isSetRetention()) {
lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.retention, typedOther.retention);
if (lastComparison != 0) {
代码示例来源:origin: org.apache.hive/hive-standalone-metastore
lastComparison = Boolean.valueOf(isSetRetention()).compareTo(other.isSetRetention());
if (lastComparison != 0) {
return lastComparison;
if (isSetRetention()) {
lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.retention, other.retention);
if (lastComparison != 0) {
代码示例来源:origin: com.linkedin.gobblin/gobblin-hive-registration
private static State getTableProps(Table table) {
State tableProps = new State();
for (Map.Entry<String, String> entry : table.getParameters().entrySet()) {
tableProps.setProp(entry.getKey(), entry.getValue());
}
if (table.isSetCreateTime()) {
tableProps.setProp(HiveConstants.CREATE_TIME, table.getCreateTime());
}
if (table.isSetLastAccessTime()) {
tableProps.setProp(HiveConstants.LAST_ACCESS_TIME, table.getCreateTime());
}
if (table.isSetOwner()) {
tableProps.setProp(HiveConstants.OWNER, table.getOwner());
}
if (table.isSetTableType()) {
tableProps.setProp(HiveConstants.TABLE_TYPE, table.getTableType());
}
if (table.isSetRetention()) {
tableProps.setProp(HiveConstants.RETENTION, table.getRetention());
}
return tableProps;
}
代码示例来源:origin: org.apache.gobblin/gobblin-hive-registration
private static State getTableProps(Table table) {
State tableProps = new State();
for (Map.Entry<String, String> entry : table.getParameters().entrySet()) {
tableProps.setProp(entry.getKey(), entry.getValue());
}
if (table.isSetCreateTime()) {
tableProps.setProp(HiveConstants.CREATE_TIME, table.getCreateTime());
}
if (table.isSetLastAccessTime()) {
tableProps.setProp(HiveConstants.LAST_ACCESS_TIME, table.getCreateTime());
}
if (table.isSetOwner()) {
tableProps.setProp(HiveConstants.OWNER, table.getOwner());
}
if (table.isSetTableType()) {
tableProps.setProp(HiveConstants.TABLE_TYPE, table.getTableType());
}
if (table.isSetRetention()) {
tableProps.setProp(HiveConstants.RETENTION, table.getRetention());
}
return tableProps;
}
代码示例来源:origin: org.spark-project.hive/hive-metastore
optionals.set(4);
if (struct.isSetRetention()) {
optionals.set(5);
oprot.writeI32(struct.lastAccessTime);
if (struct.isSetRetention()) {
oprot.writeI32(struct.retention);
代码示例来源:origin: com.facebook.presto.hive/hive-apache
optionals.set(4);
if (struct.isSetRetention()) {
optionals.set(5);
oprot.writeI32(struct.lastAccessTime);
if (struct.isSetRetention()) {
oprot.writeI32(struct.retention);
代码示例来源:origin: org.apache.hadoop.hive/hive-metastore
return isSetLastAccessTime();
case RETENTION:
return isSetRetention();
case SD:
return isSetSd();
代码示例来源:origin: org.spark-project.hive/hive-metastore
return isSetLastAccessTime();
case RETENTION:
return isSetRetention();
case SD:
return isSetSd();
代码示例来源:origin: com.facebook.presto.hive/hive-apache
return isSetLastAccessTime();
case RETENTION:
return isSetRetention();
case SD:
return isSetSd();
代码示例来源:origin: org.apache.hive/hive-standalone-metastore
optionals.set(4);
if (struct.isSetRetention()) {
optionals.set(5);
oprot.writeI32(struct.lastAccessTime);
if (struct.isSetRetention()) {
oprot.writeI32(struct.retention);
代码示例来源:origin: org.apache.hive/hive-standalone-metastore
return isSetLastAccessTime();
case RETENTION:
return isSetRetention();
case SD:
return isSetSd();
内容来源于网络,如有侵权,请联系作者删除!