Table skew info.
Java class for x_skewed_info complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="x_skewed_info">
<complexContent>
<restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
<sequence>
<element name="col_names" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
<element name="col_values" type="{uri:lens:cube:0.1}x_skew_col_list" maxOccurs="unbounded" minOccurs="0"/>
<element name="value_location_map" type="{uri:lens:cube:0.1}x_skewed_value_location" maxOccurs="unbounded" minOccurs="0"/>
</sequence>
</restriction>
</complexContent>
</complexType>
| name | data type | description |
|---|---|---|
| col_names | array of array of string | |
| col_values | array of array of XSkewColList | |
| value_location_map | array of array of XSkewedValueLocation |
Example
{
"col_names" : [ [ "...", "..." ], [ "...", "..." ] ],
"col_values" : [ [ {
"elements" : [ [ "...", "..." ], [ "...", "..." ] ]
}, {
"elements" : [ [ "...", "..." ], [ "...", "..." ] ]
} ], [ {
"elements" : [ [ "...", "..." ], [ "...", "..." ] ]
}, {
"elements" : [ [ "...", "..." ], [ "...", "..." ] ]
} ] ],
"value_location_map" : [ [ {
"location" : "...",
"value" : {
"elements" : [ [ "...", "..." ], [ "...", "..." ] ]
}
}, {
"location" : "...",
"value" : {
"elements" : [ [ "...", "..." ], [ "...", "..." ] ]
}
} ], [ {
"location" : "...",
"value" : {
"elements" : [ [ "...", "..." ], [ "...", "..." ] ]
}
}, {
"location" : "...",
"value" : {
"elements" : [ [ "...", "..." ], [ "...", "..." ] ]
}
} ] ]
}