Skip to content

Commit

Permalink
Improved table config to show DATA_RETENTION_TIME_IN_DAYS and MAX_DAT…
Browse files Browse the repository at this point in the history
…A_EXTENSION_TIME_IN_DAYS only for non-external tables (#156)
  • Loading branch information
Vitalii4as authored Sep 27, 2024
1 parent d65447d commit 2065ea5
Showing 1 changed file with 53 additions and 11 deletions.
64 changes: 53 additions & 11 deletions properties_pane/entity_level/entityLevelConfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -1259,11 +1259,41 @@ making sure that you maintain a proper JSON format.
"minValue": 0,
"maxValue": 90,
"dependency": {
"type": "not",
"values": {
"key": "external",
"value": true
}
"type": "or",
"values": [
{
"type": "and",
"values": [
{
"type": "not",
"values": {
"key": "external",
"value": true
}
},
{
"type": "not",
"values": {
"key": "iceberg",
"value": true
}
}
]
},
{
"type": "and",
"values": [
{
"key": "iceberg",
"value": true
},
{
"key": "catalogMgmt",
"value": "snowflake"
}
]
}
]
}
},
{
Expand All @@ -1279,11 +1309,23 @@ making sure that you maintain a proper JSON format.
"type": "or",
"values": [
{
"type": "not",
"values": {
"key": "external",
"value": true
}
"type": "and",
"values": [
{
"type": "not",
"values": {
"key": "external",
"value": true
}
},
{
"type": "not",
"values": {
"key": "iceberg",
"value": true
}
}
]
},
{
"type": "and",
Expand All @@ -1293,7 +1335,7 @@ making sure that you maintain a proper JSON format.
"value": true
},
{
"key": "catalog",
"key": "catalogMgmt",
"value": "snowflake"
}
]
Expand Down

0 comments on commit 2065ea5

Please sign in to comment.