-
Notifications
You must be signed in to change notification settings - Fork 37
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add debug mode #8
Comments
I will see if I can log some useful debug data in the future, a More important, can you provide the DDL of the tables that caused the problem? If yes I would try to reproduce your error and investigate it |
A pretty minimal schema to reproduce this seems to be CREATE TABLE a (id text);
CREATE TABLE b (id text, aid text, PRIMARY KEY (id, aid));
CREATE TABLE c (aid text, bid text, PRIMARY KEY (aid, bid), FOREIGN KEY (aid, bid) REFERENCES b (id, aid)); Looking at the query in the postgresql logs it seems to be resolved by adding a limit to the |
Thanks for the reproducible schema - I will investigate the issue |
Hello, i was really hyped about your tool for documentation :).
I just tried it on my DB and it does not want to do the job :
And i have no clue about what is the problem.
Maybe a --debug flag could be postponed to understand better why it would not work ?
What do you think ?
The text was updated successfully, but these errors were encountered: