-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Ensure rows added for only selected foreign-keys.
Previously, when building the graph, the code would only add rows realted through a reverse foreign-key relation only if they were from a table included in the `only_tables` argument. However, rows related by forward foreign-keys would be added regardless. This was a mistake, and now the forward case is similar to the reverse case.
- Loading branch information
Showing
3 changed files
with
22 additions
and
6 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ requires = ["hatchling"] | |
build-backend = "hatchling.build" | ||
[project] | ||
name = "fk-graph" | ||
version = "0.0.5" | ||
version = "0.0.6" | ||
authors = [ | ||
{ name="Andrew Curtis", email="[email protected]" }, | ||
{ name="John C Thomas" }, | ||
|
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