-
Notifications
You must be signed in to change notification settings - Fork 362
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Fix issue with unwind and empty arrays creating an extra column (#…
…496) * fix: Fix issue with unwind and empty arrays creating an extra column * fix: bring text coverage back to 100%
- Loading branch information
1 parent
b37e242
commit 0b331fc
Showing
11 changed files
with
173 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
"carModel","price","extras.items.name","extras.items.items.position","extras.items.items.color","extras.items.items","name","color","extras.items.color" | ||
"Porsche",30000,"airbag","left","white",,,, | ||
"Porsche",30000,"airbag","right","gray",,,, | ||
"Porsche",30000,"dashboard",,,"none",,, | ||
,,,,,,"airbag","white", | ||
"BMW",15000,"dashboard",,,,,,"black" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,33 @@ | ||
[ | ||
{ | ||
"carModel": "BMW", | ||
"price": 15000, | ||
"items": [ | ||
{ | ||
"name": "airbag", | ||
"color": "white" | ||
}, { | ||
"name": "dashboard", | ||
"color": "black" | ||
} | ||
] | ||
}, { | ||
"carModel": "Porsche", | ||
"price": 30000, | ||
"items": [ | ||
{ | ||
"name": "airbag", | ||
"color": "gray" | ||
}, | ||
{ | ||
"name": "dashboard", | ||
"color": "red" | ||
} | ||
] | ||
} | ||
{ | ||
"carModel": "BMW", | ||
"price": 15000, | ||
"items": [ | ||
{ | ||
"name": "airbag", | ||
"color": "white" | ||
}, { | ||
"name": "dashboard", | ||
"color": "black" | ||
} | ||
] | ||
}, { | ||
"carModel": "Porsche", | ||
"price": 30000, | ||
"items": [ | ||
{ | ||
"name": "airbag", | ||
"color": "gray" | ||
}, | ||
{ | ||
"name": "dashboard", | ||
"color": "red" | ||
} | ||
] | ||
}, | ||
{ | ||
"carModel": "Mercedes", | ||
"price": 20000, | ||
"items": [] | ||
} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
[ | ||
{ | ||
"carModel": "Porsche", | ||
"price": 30000, | ||
"extras": { | ||
"items": [ | ||
{ | ||
"name": "airbag", | ||
"items": [ | ||
{ | ||
"position": "left", | ||
"color": "white" | ||
}, { | ||
"position": "right", | ||
"color": "gray" | ||
} | ||
] | ||
}, | ||
{ | ||
"name": "dashboard", | ||
"items": "none" | ||
} | ||
] | ||
} | ||
}, { | ||
"carModel": "BMW", | ||
"price": 15000, | ||
"extras": { | ||
"items": [ | ||
{ | ||
"name": "airbag", | ||
"color": "white", | ||
"items": [] | ||
}, { | ||
"name": "dashboard", | ||
"color": "black" | ||
} | ||
] | ||
} | ||
} | ||
] |