This project has retired. For details please refer to its Attic page.
Lens Server: x_storage_table_element

x_storage_table_element Data Type

Storage and storage table description and update periods. table_desc is invalid when update_periods has a list of update_period_table_descriptor instead of a list of enums.

Java class for x_storage_table_element complex type.

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

 <complexType name="x_storage_table_element">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <all>
         <element name="update_periods" type="{uri:lens:cube:0.1}x_update_periods" minOccurs="0"/>
         <element name="storage_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
         <element name="table_desc" type="{uri:lens:cube:0.1}x_storage_table_desc" minOccurs="0"/>
       </all>
     </restriction>
   </complexContent>
 </complexType>
 

Namespace
uri:lens:cube:0.1
Schema
ns2.xsd
Properties
name data type type namespace min/max occurs constraints description
storage_name string element ns2 1/1 required  
table_desc x_storage_table_desc element ns2 0/1    
update_periods x_update_periods element ns2 0/1    

Example

<x----- xmlns="uri:lens:cube:0.1">
  <update_periods>
    <update_period_table_descriptor>
      <update_period>...</update_period>
      <table_desc/>
    </update_period_table_descriptor>
    <update_period>...</update_period>
  </update_periods>
  <storage_name>...</storage_name>
  <table_desc collection_delimiter="..." compressed="..." escape_char="..." external="..." field_delimiter="..." input_format="..." line_delimiter="..." map_key_delimiter="..." num_buckets="..." output_format="..." serde_class_name="..." storage_handler_name="..." table_location="...">
    <part_cols>
      <column/>
    </part_cols>
    <table_parameters>
      <property/>
    </table_parameters>
    <serde_parameters>
      <property/>
    </serde_parameters>
    <bucket_cols>...</bucket_cols>
    <sort_cols>...</sort_cols>
    <sort_col_order>...</sort_col_order>
    <skewed_info>
      <col_names>...</col_names>
      <col_values/>
      <value_location_map/>
    </skewed_info>
    <time_part_cols>...</time_part_cols>
  </table_desc>
</x----->