We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
When you do rake yeet_dba:find_invalid_columns and there are dangling rows found,
rake yeet_dba:find_invalid_columns
it outputs with the readable name of the column obscured (an inspect instead of a name)
-> external_links.#<YeetDba::Column:0x00007fc060abff90> Invalid rows: 1165 Foreign table: external_systems
I would expect it to output something like this instead:
-> external_links.external_system_id Invalid rows: 1165 Foreign table: external_systems
I've created a PR for this.
The text was updated successfully, but these errors were encountered:
output db column name for invalid column (rather than inspect)
1a2512d
fixes KevinColemanInc#35
Successfully merging a pull request may close this issue.
When you do
rake yeet_dba:find_invalid_columns
and there are dangling rows found,it outputs with the readable name of the column obscured (an inspect instead of a name)
I would expect it to output something like this instead:
I've created a PR for this.
The text was updated successfully, but these errors were encountered: