Skip to content

Commit

Permalink
Fix Oracle RAC related issues
Browse files Browse the repository at this point in the history
* Fix gGET_ROLES_BY_TENANT_WITH_UUID_ORACLE
  • Loading branch information
shanggeeth committed Aug 6, 2024
1 parent 4222c06 commit 053f1cb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ public class SQLQueries {
"ORDER BY UM_ID DESC) WHERE rownum <= :END_INDEX;) WHERE rnum > :ZERO_BASED_START_INDEX;";

public static final String GET_ROLES_BY_TENANT_WITH_UUID_ORACLE = "SELECT UM_ROLE_NAME, UM_UUID FROM (SELECT " +
"UM_ROLE_NAME, rownum AS rnum FROM (SELECT UM_ROLE_NAME, UM_UUID FROM UM_HYBRID_ROLE WHERE " +
"UM_ROLE_NAME, UM_UUID, rownum AS rnum FROM (SELECT UM_ROLE_NAME, UM_UUID FROM UM_HYBRID_ROLE WHERE " +
"UM_TENANT_ID=:UM_TENANT_ID; ORDER BY UM_ID DESC) WHERE rownum <= :END_INDEX;) " +
"WHERE rnum > :ZERO_BASED_START_INDEX;";

Expand Down

0 comments on commit 053f1cb

Please sign in to comment.