Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 1a334b8

Browse files
authored
Merge branch 'develop' into feature/update_copyright
2 parents d309c90 + 4380b81 commit 1a334b8

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

source/check_sys_grants.sql

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,11 @@ begin
1818
select column_value as privilege
1919
from table(l_expected_grants)
2020
minus
21-
select privilege
21+
(select privilege
2222
from user_sys_privs
23+
union all
24+
select replace(privilege,' ANY ') privilege
25+
from user_sys_privs)
2326
);
2427
if l_missing_grants is not null then
2528
raise_application_error(

0 commit comments

Comments
 (0)