-
Notifications
You must be signed in to change notification settings - Fork 208
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: FsNeo4jCSVLoader fails if nodes have disjoint keys (#408)
* Prepare for test_fs_neo4j_csv_loader to run multiple tests Signed-off-by: Joseph Atkins-Turkish <[email protected]> * Add failing test Signed-off-by: Joseph Atkins-Turkish <[email protected]> * Fix failing test Signed-off-by: Joseph Atkins-Turkish <[email protected]> * Implement using numeric keys Signed-off-by: Joseph Atkins-Turkish <[email protected]>
- Loading branch information
Joseph Atkins-Turkish
authored
Nov 17, 2020
1 parent
8a9618e
commit c07cec9
Showing
9 changed files
with
99 additions
and
18 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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 2 additions & 0 deletions
2
tests/unit/resources/fs_neo4j_csv_loader/people/nodes/Person_0.csv
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,2 @@ | ||
"name","job","KEY","LABEL" | ||
"Taylor","Engineer","person://Taylor","Person" |
2 changes: 2 additions & 0 deletions
2
tests/unit/resources/fs_neo4j_csv_loader/people/nodes/Person_1.csv
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,2 @@ | ||
"name","pet","KEY","LABEL" | ||
"Griffin","Lion","person://Griffin","Person" |