-
Notifications
You must be signed in to change notification settings - Fork 23
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
SCHEMA in uppercase #11
Comments
The only way to maintain the CaSe in Postgres is by using quotes, e.g.
But that means that every time you reference that object you need to use quotes with the exact same CaSe, so this will error as no such table:
The only way to use it would be to add quotes and the correct case every time:
I can add that feature, but I find this to be unusable. If more people will request it then I will reconsider. |
You can keep the schema casing unchanged. Simply do not specify any transformation. It will work as the SQL standard is case-insensitive. The only thing you wouldn't get is the original case in your result sets. All the columns will collapse to lowercase. |
Thank you for this answer - I have problem transfering records - it expects schema with lowercase. |
Hi
Thank you for this wonderful tool.
I have a huge db with camelcase tables - would love to see support for this as well since changing it now is not an option.
Thanks
The text was updated successfully, but these errors were encountered: