XNativeTable Data Type

Properties
name data type description
name string
columns XColumns
storage_descriptor XStorageTableDesc

Example

{
  "name" : "...",
  "columns" : {
    "column" : [ {
      "name" : "...",
      "_type" : "...",
      "comment" : "..."
    }, {
      "name" : "...",
      "_type" : "...",
      "comment" : "..."
    } ]
  },
  "storage_descriptor" : {
    "external" : true,
    "part_cols" : {
      "column" : [ { }, { } ]
    },
    "table_parameters" : {
      "property" : [ { }, { } ]
    },
    "serde_parameters" : {
      "property" : [ { }, { } ]
    },
    "bucket_cols" : [ "...", "..." ],
    "sort_cols" : [ "...", "..." ],
    "sort_col_order" : [ 12345, 12345 ],
    "skewed_info" : [ {
      "col_names" : [ "...", "..." ],
      "col_values" : [ { }, { } ],
      "value_location_map" : [ { }, { } ]
    }, {
      "col_names" : [ "...", "..." ],
      "col_values" : [ { }, { } ],
      "value_location_map" : [ { }, { } ]
    } ],
    "time_part_cols" : [ "...", "..." ]
  }
}