org.apache.hadoop.hive.ql.metadata.Partition.initialize()方法的使用及代码示例

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

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

Partition.initialize介绍

[英]Initializes this object with the given variables
[中]使用给定变量初始化此对象

代码示例

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

public Partition(Table tbl, org.apache.hadoop.hive.metastore.api.Partition tp)
  throws HiveException {
 initialize(tbl, tp);
}

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

public Partition(Table tbl, org.apache.hadoop.hive.metastore.api.Partition tp)
  throws HiveException {
 initialize(tbl, tp);
}

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

/**
 * Create partition object with the given info.
 *
 * @param tbl
 *          Table the partition will be in.
 * @param partSpec
 *          Partition specifications.
 * @param location
 *          Location of the partition, relative to the table.
 * @throws HiveException
 *           Thrown if we could not create the partition.
 */
public Partition(Table tbl, Map<String, String> partSpec, Path location) throws HiveException {
 initialize(tbl, createMetaPartitionObject(tbl, partSpec, location));
}

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

/**
 * Create partition object with the given info.
 *
 * @param tbl
 *          Table the partition will be in.
 * @param partSpec
 *          Partition specifications.
 * @param location
 *          Location of the partition, relative to the table.
 * @throws HiveException
 *           Thrown if we could not create the partition.
 */
public Partition(Table tbl, Map<String, String> partSpec, Path location) throws HiveException {
 initialize(tbl, createMetaPartitionObject(tbl, partSpec, location));
}

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

/**
 * create an empty partition.
 * SemanticAnalyzer code requires that an empty partition when the table is not partitioned.
 */
public Partition(Table tbl) throws HiveException {
 org.apache.hadoop.hive.metastore.api.Partition tPart =
   new org.apache.hadoop.hive.metastore.api.Partition();
 if (!tbl.isView()) {
  tPart.setSd(tbl.getTTable().getSd().deepCopy());
 }
 initialize(tbl, tPart);
}

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

/**
 * create an empty partition.
 * SemanticAnalyzer code requires that an empty partition when the table is not partitioned.
 */
public Partition(Table tbl) throws HiveException {
 org.apache.hadoop.hive.metastore.api.Partition tPart =
   new org.apache.hadoop.hive.metastore.api.Partition();
 if (!tbl.isView()) {
  tPart.setSd(tbl.getTTable().getSd().deepCopy());
 }
 initialize(tbl, tPart);
}

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

public Partition(Table tbl, org.apache.hadoop.hive.metastore.api.Partition tp)
  throws HiveException {
 initialize(tbl, tp);
}

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

public Partition(Table tbl, org.apache.hadoop.hive.metastore.api.Partition tp)
  throws HiveException {
 initialize(tbl, tp);
}

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

/**
 * Create partition object with the given info.
 *
 * @param tbl
 *          Table the partition will be in.
 * @param partSpec
 *          Partition specifications.
 * @param location
 *          Location of the partition, relative to the table.
 * @throws HiveException
 *           Thrown if we could not create the partition.
 */
public Partition(Table tbl, Map<String, String> partSpec, Path location) throws HiveException {
 initialize(tbl, createMetaPartitionObject(tbl, partSpec, location));
}

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

/**
 * create an empty partition.
 * SemanticAnalyzer code requires that an empty partition when the table is not partitioned.
 */
public Partition(Table tbl) throws HiveException {
 org.apache.hadoop.hive.metastore.api.Partition tPart =
   new org.apache.hadoop.hive.metastore.api.Partition();
 if (!tbl.isView()) {
  tPart.setSd(tbl.getTTable().getSd()); // TODO: get a copy
 }
 initialize(tbl, tPart);
}

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

/**
 * create an empty partition.
 * SemanticAnalyzer code requires that an empty partition when the table is not partitioned.
 */
public Partition(Table tbl) throws HiveException {
 org.apache.hadoop.hive.metastore.api.Partition tPart =
   new org.apache.hadoop.hive.metastore.api.Partition();
 if (!tbl.isView()) {
  tPart.setSd(tbl.getTTable().getSd()); // TODO: get a copy
 }
 initialize(tbl, tPart);
}

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

initialize(tbl, tpart);
 return;
initialize(tbl, tpart);

相关文章

微信公众号

最新文章

更多