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

x33g5p2x  于2022-01-29 转载在 其他  
字(6.6k)|赞(0)|评价(0)|浏览(160)

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

Table.isSetParameters介绍

[英]Returns true if field parameters is set (has been assigned a value) and false otherwise
[中]如果设置了字段参数(已指定值),则返回true,否则返回false

代码示例

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

  1. private static boolean isMustPurge(EnvironmentContext envContext, Table tbl) {
  2. // Data needs deletion. Check if trash may be skipped.
  3. // Trash may be skipped iff:
  4. // 1. deleteData == true, obviously.
  5. // 2. tbl is external.
  6. // 3. Either
  7. // 3.1. User has specified PURGE from the commandline, and if not,
  8. // 3.2. User has set the table to auto-purge.
  9. return ((envContext != null) && Boolean.parseBoolean(envContext.getProperties().get("ifPurge")))
  10. || (tbl.isSetParameters() && "true".equalsIgnoreCase(tbl.getParameters().get("auto.purge")));
  11. }
  12. private void deleteParentRecursive(Path parent, int depth, boolean mustPurge, boolean needRecycle)

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

  1. list.add(partitionKeys);
  2. boolean present_parameters = true && (isSetParameters());
  3. list.add(present_parameters);
  4. if (present_parameters)

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

  1. lastComparison = Boolean.valueOf(isSetParameters()).compareTo(other.isSetParameters());
  2. if (lastComparison != 0) {
  3. return lastComparison;
  4. if (isSetParameters()) {
  5. lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.parameters, other.parameters);
  6. if (lastComparison != 0) {

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

  1. String[] parsedDbName = parseDbName(dbName, conf);
  2. Table tbl = get_table_core(parsedDbName[CAT_NAME], parsedDbName[DB_NAME], tableName);
  3. boolean isAutopurge = (tbl.isSetParameters() && "true".equalsIgnoreCase(tbl.getParameters().get("auto.purge")));
  4. Database db = get_database_core(parsedDbName[CAT_NAME], parsedDbName[DB_NAME]);

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

  1. if (other.isSetParameters()) {
  2. Map<String,String> __this__parameters = new HashMap<String,String>(other.parameters);
  3. this.parameters = __this__parameters;

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

  1. optionals.set(8);
  2. if (struct.isSetParameters()) {
  3. optionals.set(9);
  4. if (struct.isSetParameters()) {

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

  1. boolean this_present_parameters = true && this.isSetParameters();
  2. boolean that_present_parameters = true && that.isSetParameters();
  3. if (this_present_parameters || that_present_parameters) {
  4. if (!(this_present_parameters && that_present_parameters))

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

  1. return isSetPartitionKeys();
  2. case PARAMETERS:
  3. return isSetParameters();
  4. case VIEW_ORIGINAL_TEXT:
  5. return isSetViewOriginalText();

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

  1. private static boolean isMustPurge(EnvironmentContext envContext, Table tbl) {
  2. // Data needs deletion. Check if trash may be skipped.
  3. // Trash may be skipped iff:
  4. // 1. deleteData == true, obviously.
  5. // 2. tbl is external.
  6. // 3. Either
  7. // 3.1. User has specified PURGE from the commandline, and if not,
  8. // 3.2. User has set the table to auto-purge.
  9. return ((envContext != null) && Boolean.parseBoolean(envContext.getProperties().get("ifPurge")))
  10. || (tbl.isSetParameters() && "true".equalsIgnoreCase(tbl.getParameters().get("auto.purge")));
  11. }
  12. private void deleteParentRecursive(Path parent, int depth, boolean mustPurge, boolean needRecycle)

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

  1. private static boolean isMustPurge(EnvironmentContext envContext, Table tbl) {
  2. // Data needs deletion. Check if trash may be skipped.
  3. // Trash may be skipped iff:
  4. // 1. deleteData == true, obviously.
  5. // 2. tbl is external.
  6. // 3. Either
  7. // 3.1. User has specified PURGE from the commandline, and if not,
  8. // 3.2. User has set the table to auto-purge.
  9. return ((envContext != null) && Boolean.parseBoolean(envContext.getProperties().get("ifPurge")))
  10. || (tbl.isSetParameters() && "true".equalsIgnoreCase(tbl.getParameters().get("auto.purge")));
  11. }
  12. private void deleteParentRecursive(Path parent, int depth, boolean mustPurge) throws IOException, MetaException {

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

  1. private static boolean isMustPurge(EnvironmentContext envContext, Table tbl) {
  2. // Data needs deletion. Check if trash may be skipped.
  3. // Trash may be skipped iff:
  4. // 1. deleteData == true, obviously.
  5. // 2. tbl is external.
  6. // 3. Either
  7. // 3.1. User has specified PURGE from the commandline, and if not,
  8. // 3.2. User has set the table to auto-purge.
  9. return ((envContext != null) && Boolean.parseBoolean(envContext.getProperties().get("ifPurge")))
  10. || (tbl.isSetParameters() && "true".equalsIgnoreCase(tbl.getParameters().get("auto.purge")));
  11. }
  12. private void deleteParentRecursive(Path parent, int depth, boolean mustPurge) throws IOException, MetaException {

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

  1. builder.append(partitionKeys);
  2. boolean present_parameters = true && (isSetParameters());
  3. builder.append(present_parameters);
  4. if (present_parameters)

代码示例来源:origin: uk.co.nichesolutions.presto/presto-hive

  1. properties.put(PARTITIONED_BY_PROPERTY, partitionedBy);
  2. if (table.get().isSetParameters()) {
  3. properties.putAll(tableParameterCodec.decode(table.get().getParameters()));

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

  1. if (other.isSetParameters()) {
  2. Map<String,String> __this__parameters = new HashMap<String,String>();
  3. for (Map.Entry<String, String> other_element : other.parameters.entrySet()) {

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

  1. if (other.isSetParameters()) {
  2. Map<String,String> __this__parameters = new HashMap<String,String>();
  3. for (Map.Entry<String, String> other_element : other.parameters.entrySet()) {

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

  1. String[] parsedDbName = parseDbName(dbName, conf);
  2. Table tbl = get_table_core(parsedDbName[CAT_NAME], parsedDbName[DB_NAME], tableName);
  3. boolean isAutopurge = (tbl.isSetParameters() && "true".equalsIgnoreCase(tbl.getParameters().get("auto.purge")));
  4. Database db = get_database_core(parsedDbName[CAT_NAME], parsedDbName[DB_NAME]);

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

  1. return isSetPartitionKeys();
  2. case PARAMETERS:
  3. return isSetParameters();
  4. case VIEW_ORIGINAL_TEXT:
  5. return isSetViewOriginalText();

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

  1. return isSetPartitionKeys();
  2. case PARAMETERS:
  3. return isSetParameters();
  4. case VIEW_ORIGINAL_TEXT:
  5. return isSetViewOriginalText();

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

  1. return isSetPartitionKeys();
  2. case PARAMETERS:
  3. return isSetParameters();
  4. case VIEW_ORIGINAL_TEXT:
  5. return isSetViewOriginalText();

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

  1. return isSetPartitionKeys();
  2. case PARAMETERS:
  3. return isSetParameters();
  4. case VIEW_ORIGINAL_TEXT:
  5. return isSetViewOriginalText();

相关文章

Table类方法