Skip to content

Commit

Permalink
fix: add children to array of struct (#17850)
Browse files Browse the repository at this point in the history
  • Loading branch information
ayush-shah authored Sep 16, 2024
1 parent e78450a commit 23c6aa3
Showing 1 changed file with 17 additions and 4 deletions.
21 changes: 17 additions & 4 deletions ingestion/examples/sample_data/datasets/tables.json
Original file line number Diff line number Diff line change
Expand Up @@ -1604,10 +1604,23 @@
},
{
"name": "shipping_address",
"dataType": "ARRAY",
"arrayDataType": "STRUCT",
"dataTypeDisplay": "array<struct<name:varchar(32),street_address:varchar(128), city:varchar(32),postcode:varchar(8)>>",
"tags": []
"dataType": "ARRAY",
"arrayDataType": "STRUCT",
"dataTypeDisplay": "array<struct<type:string,provider:array<int>>>",
"children": [
{
"dataType": "STRING",
"dataTypeDisplay": "string",
"name": "type"
},
{
"dataType": "ARRAY",
"arrayDataType": "INT",
"dataTypeDisplay": "array<int>",
"name": "provider"
}
],
"tags": []
},
{
"name": "orders",
Expand Down

0 comments on commit 23c6aa3

Please sign in to comment.