Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 16 additions & 4 deletions properties_pane/entity_level/entityLevelConfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,6 @@ making sure that you maintain a proper JSON format.
}

*/

[
{
"lowerTab": "Details",
Expand Down Expand Up @@ -706,14 +705,17 @@ making sure that you maintain a proper JSON format.
{
"propertyName": "Subpartition description",
"propertyKeyword": "subpartitionDescription",
"propertyType": "text",
"propertyType": "details",
"template": "textarea",
"markdown": false,
"propertyTooltip": "Specify subpartitions description. How many subpartitions you need and where you store them",
"dependency": {
"key": "partitionBy",
"value": ["composite range", "composite list", "composite hash"]
}
},
{
// Although it is called "range_subpartition_descs" it actually represent "range_partition_desc" from documentation
"propertyName": "Range subpart desc",
"propertyType": "group",
"propertyKeyword": "range_subpartition_descs",
Expand Down Expand Up @@ -743,6 +745,7 @@ making sure that you maintain a proper JSON format.
}
},
{
// Although it is called "list_subpartition_descs" it actually represent "list_partition_desc" from documentation
"propertyName": "List subpart desc",
"propertyType": "group",
"propertyKeyword": "list_subpartition_descs",
Expand All @@ -758,8 +761,17 @@ making sure that you maintain a proper JSON format.
}
],
"dependency": {
"key": "subpartitionType",
"value": ["list", "hash", "range"]
"type": "and",
"values": [
{
"key": "partitionBy",
"value": ["composite list"]
},
{
"key": "subpartitionType",
"value": ["range", "hash", "list"]
}
]
}
},
{
Expand Down