mirror of
https://github.com/gyurix1968/guacamole-client.git
synced 2025-09-06 21:27:40 +00:00
GUACAMOLE-220: Manually recurse through the group membership graph if the database engine does not support recursive queries.
This commit is contained in:
@@ -242,5 +242,10 @@ public class PostgreSQLEnvironment extends JDBCEnvironment {
|
||||
public String getPostgreSQLPassword() throws GuacamoleException {
|
||||
return getRequiredProperty(PostgreSQLGuacamoleProperties.POSTGRESQL_PASSWORD);
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean isRecursiveQuerySupported() {
|
||||
return true; // All versions of PostgreSQL support recursive queries through CTEs
|
||||
}
|
||||
|
||||
}
|
||||
|
Reference in New Issue
Block a user