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
names in postgres have a max length of 63 chars by default. We generate names in many places, like:
We should make sure we don't generate names longer than the expected max, as that could cause issues down the line.
https://www.postgresql.org/docs/current/sql-syntax-lexical.html#SQL-SYNTAX-IDENTIFIERS
The text was updated successfully, but these errors were encountered:
I would like to work on this one.
Sorry, something went wrong.
Validate maximum identifier length (#439)
37a7232
It should not exceed the maximum of 63. Closes #64
ryanslade
Successfully merging a pull request may close this issue.
names in postgres have a max length of 63 chars by default. We generate names in many places, like:
We should make sure we don't generate names longer than the expected max, as that could cause issues down the line.
https://www.postgresql.org/docs/current/sql-syntax-lexical.html#SQL-SYNTAX-IDENTIFIERS
The text was updated successfully, but these errors were encountered: