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

@@ -250,5 +250,10 @@ public class SQLServerEnvironment extends JDBCEnvironment {
SQLSERVER_DEFAULT_DRIVER
);
}
@Override
public boolean isRecursiveQuerySupported() {
return true; // All versions of SQL Server support recursive queries through CTEs
}
}