Show / Hide Table of Contents

Class PartitioningDefinition

The partitioning information, which includes managed table, external table and metastore partitioned table partition information.

Inheritance
object
PartitioningDefinition
Implements
IDirectResponseSchema
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Google.Apis.Bigquery.v2.Data
Assembly: Google.Apis.Bigquery.v2.dll
Syntax
public class PartitioningDefinition : IDirectResponseSchema

Properties

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
string

PartitionedColumn

Optional. Details about each partitioning column. This field is output only for all partitioning types other than metastore partitioned tables. BigQuery native tables only support 1 partitioning column. Other table types may support 0, 1 or more partitioning columns. For metastore partitioned tables, the order must match the definition order in the Hive Metastore, where it must match the physical layout of the table. For example, CREATE TABLE a_table(id BIGINT, name STRING) PARTITIONED BY (city STRING, state STRING). In this case the values must be ['city', 'state'] in that order.

Declaration
[JsonProperty("partitionedColumn")]
public virtual IList<PartitionedColumn> PartitionedColumn { get; set; }
Property Value
Type Description
IList<PartitionedColumn>

Implements

IDirectResponseSchema
In this article
Back to top Generated by DocFX