Skip to content

Commit 4e50c4e

Browse files
committed
fix: 5
risk: nonprod
1 parent 33bb9b3 commit 4e50c4e

File tree

3 files changed

+18
-9
lines changed

3 files changed

+18
-9
lines changed

packages/gooddata-sdk/tests/catalog/expected/declarative_ldm_with_sql_dataset.json

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -430,7 +430,8 @@
430430
"description": "Product name",
431431
"tags": [
432432
"Products"
433-
]
433+
],
434+
"isNullable": true
434435
},
435436
{
436437
"id": "products.category",
@@ -441,7 +442,8 @@
441442
"description": "Category",
442443
"tags": [
443444
"Products"
444-
]
445+
],
446+
"isNullable": true
445447
},
446448
{
447449
"id": "products.product_id",
@@ -452,7 +454,8 @@
452454
"description": "Product id",
453455
"tags": [
454456
"Products"
455-
]
457+
],
458+
"isNullable": false
456459
}
457460
],
458461
"facts": [],

packages/gooddata-sdk/tests/catalog/expected/declarative_pdm_ldm_request.json

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -190,17 +190,20 @@
190190
{
191191
"data_type": "STRING",
192192
"isPrimaryKey": false,
193-
"name": "category"
193+
"name": "category",
194+
"isNullable": true
194195
},
195196
{
196197
"data_type": "INT",
197198
"isPrimaryKey": true,
198-
"name": "product_id"
199+
"name": "product_id",
200+
"isNullable": false
199201
},
200202
{
201203
"data_type": "STRING",
202204
"isPrimaryKey": false,
203-
"name": "product_name"
205+
"name": "product_name",
206+
"isNullable": true
204207
}
205208
],
206209
"id": "products",

packages/tests-support/fixtures/demo_declarative_hierarchy.json

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2996,7 +2996,8 @@
29962996
"tags": [
29972997
"Products"
29982998
],
2999-
"title": "Product id"
2999+
"title": "Product id",
3000+
"isNullable": false
30003001
},
30013002
{
30023003
"description": "Product name",
@@ -3007,7 +3008,8 @@
30073008
"tags": [
30083009
"Products"
30093010
],
3010-
"title": "Product name"
3011+
"title": "Product name",
3012+
"isNullable": true
30113013
},
30123014
{
30133015
"description": "Category",
@@ -3018,7 +3020,8 @@
30183020
"tags": [
30193021
"Products"
30203022
],
3021-
"title": "Category"
3023+
"title": "Category",
3024+
"isNullable": true
30223025
}
30233026
],
30243027
"dataSourceTableId": {

0 commit comments

Comments
 (0)