simonw / db-to-sqlite

CLI tool for exporting tables or queries from any SQL database to a SQLite file
Apache License 2.0
368 stars 28 forks source link

--all should handle circular foreign key references #1

Closed simonw closed 5 years ago

simonw commented 5 years ago

Currently crashes with an error thrown by the topological sort function.

I think the fix here is to delay adding foreign key references until after the database has been created and fully populated.

simonw commented 5 years ago

This means I can drop the toposort dependency.