x_partition Data Type

Partition details

Java class for x_partition complex type.

The following schema fragment specifies the expected content contained within this class.

 <complexType name="x_partition">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <sequence>
         <element name="non_time_partition_spec" type="{uri:lens:cube:0.1}x_part_spec" minOccurs="0"/>
         <element name="time_partition_spec" type="{uri:lens:cube:0.1}x_time_part_spec" minOccurs="0"/>
         <element name="full_partition_spec" type="{uri:lens:cube:0.1}x_part_spec" minOccurs="0"/>
         <element name="partition_parameters" type="{uri:lens:cube:0.1}x_properties" minOccurs="0"/>
         <element name="serde_parameters" type="{uri:lens:cube:0.1}x_properties" minOccurs="0"/>
       </sequence>
       <attribute name="fact_or_dimension_table_name" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
       <attribute name="name" type="{http://www.w3.org/2001/XMLSchema}string" />
       <attribute name="location" type="{http://www.w3.org/2001/XMLSchema}string" />
       <attribute name="input_format" type="{http://www.w3.org/2001/XMLSchema}string" />
       <attribute name="output_format" type="{http://www.w3.org/2001/XMLSchema}string" />
       <attribute name="serde_classname" type="{http://www.w3.org/2001/XMLSchema}string" />
       <attribute name="update_period" type="{uri:lens:cube:0.1}x_update_period" />
     </restriction>
   </complexContent>
 </complexType>
 

Namespace
uri:lens:cube:0.1
Schema
ns2.xsd
Properties
name data type type namespace min/max occurs description
fact_or_dimension_table_name string attribute 1/1  
input_format string attribute 0/1  
location string attribute 0/1  
name string attribute 0/1  
output_format string attribute 0/1  
serde_classname string attribute 0/1  
update_period x_update_period attribute 0/1  
full_partition_spec x_part_spec element ns2 0/1  
non_time_partition_spec x_part_spec element ns2 0/1  
partition_parameters x_properties element ns2 0/1  
serde_parameters x_properties element ns2 0/1  
time_partition_spec x_time_part_spec element ns2 0/1  

Example

<x----- fact_or_dimension_table_name="..." input_format="..." location="..." name="..." output_format="..." serde_classname="..." update_period="..." xmlns="uri:lens:cube:0.1">
  <non_time_partition_spec>
    <part_spec_element key="..." value="..."/>
  </non_time_partition_spec>
  <time_partition_spec>
    <part_spec_element key="..." value="..."/>
  </time_partition_spec>
  <full_partition_spec>
    <part_spec_element key="..." value="..."/>
  </full_partition_spec>
  <partition_parameters>
    <property name="..." value="..."/>
  </partition_parameters>
  <serde_parameters>
    <property name="..." value="..."/>
  </serde_parameters>
</x----->