- I'm writing java
- I want the db to be case sensitive for table and column names
- I don't want to quote identifiers in my sql because it'll look like this in java:
String sql = "SELECT * FROM \"Seat\"";
Is it possible to configure postgres to always treat identifiers as case sensitive, even without quotes?