jmuehlner commented on code in PR #902: URL: https://github.com/apache/guacamole-client/pull/902#discussion_r1759549922
########## extensions/guacamole-auth-jdbc/modules/guacamole-auth-jdbc-postgresql/src/main/java/org/apache/guacamole/auth/postgresql/conf/PostgreSQLEnvironment.java: ########## @@ -398,5 +398,17 @@ public boolean enforceAccessWindowsForActiveSessions() throws GuacamoleException PostgreSQLGuacamoleProperties.POSTGRESQL_ENFORCE_ACCESS_WINDOWS_FOR_ACTIVE_SESSIONS, true); } + + @Override + public boolean getCaseSensitiveUsernames() throws GuacamoleException { + + // By default, PostgreSQL does use case-sensitive string searches, so + // we will honor case-sensitive usernames. + return getProperty( + PostgreSQLGuacamoleProperties.POSTGRESQL_CASE_SENSITIVE_USERNAMES, + true Review Comment: Should this not default to false like it does elsewhere? -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: dev-unsubscr...@guacamole.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org