Reputation: 4258
Is there any flag or option that can be set to disable Postgres from lowering query casing? (ie SELECT firstName, lastName, ...
is converted by Postgres to SELECT firstname, lastname, ...
)
Yes, I already know if you use double quotes, it will preserve case. And I know because of this annoying behavior, most recommend not to use case sensitive columns, forcing users to only use something other than Pascal naming schemes like snake naming schemes. I don't get why this behavior was built-in the first place.
Upvotes: 1
Views: 1043