GUACAMOLE-220: Manually recurse through the group membership graph if the database engine does not support recursive queries.

This commit is contained in:
Michael Jumper
2018-09-08 01:13:36 -07:00
parent 48948fc245
commit 78d5e3b9d7
6 changed files with 58 additions and 3 deletions

View File

@@ -225,5 +225,10 @@ public class MySQLEnvironment extends JDBCEnvironment {
public String getMySQLPassword() throws GuacamoleException {
return getRequiredProperty(MySQLGuacamoleProperties.MYSQL_PASSWORD);
}
@Override
public boolean isRecursiveQuerySupported() {
return false; // Only very recent versions of MySQL / MariaDB support recursive queries through CTEs
}
}