Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
None
-
None
-
None
Description
Revoke combined column privileges from role failed, but revoke the privileges seperately would succeed.
Reproduce Steps –
create role role1;
create schema grantsch;
set schema grantsch;
create table a03tab1(col1 int, col2 int, col3 varchar(10))no partition;
grant insert(col1,col2), select on a03tab1 to role1;
SQL>revoke insert(col1,col2), select on a03tab1 from role1;
-
-
- ERROR[1037] Revoke failed because of a dependent grant between authorization ID SYSTEM and authorization ID DB_ROOT [2016-08-17 10:00:20]
-
>>revoke select on a03tab1 from role1;
— SQL operation complete.
>>revoke insert(col1,col2) on a03tab1 from role1;
— SQL operation complete.
Attachments
Issue Links
- links to