-
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.
Adding "unwindPath" option that enables data transformation prior to … (
#140) * Adding "unwindPath" option that enables data transformation prior to writing CSV similar to MongoDB's $unwind operation * Fixing up README.md spacing in unwind section
- Loading branch information
1 parent
ab3865d
commit 6d14a8d
Showing
7 changed files
with
138 additions
and
10 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
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,10 @@ | ||
"carModel","price","colors" | ||
"Audi",0,"blue" | ||
"Audi",0,"green" | ||
"Audi",0,"yellow" | ||
"BMW",15000,"red" | ||
"BMW",15000,"blue" | ||
"Mercedes",20000,"yellow" | ||
"Porsche",30000,"green" | ||
"Porsche",30000,"teal" | ||
"Porsche",30000,"aqua" |
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": "Audi", "price": 0, "colors": ["blue","green","yellow"] }, | ||
{ "carModel": "BMW", "price": 15000, "colors": ["red","blue"] }, | ||
{ "carModel": "Mercedes", "price": 20000, "colors": "yellow" }, | ||
{ "carModel": "Porsche", "price": 30000, "colors": ["green","teal","aqua"] } | ||
] |
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