Skip to content

Commit

Permalink
Adjusted code: replaced field alias to avoid conflict with reserved w…
Browse files Browse the repository at this point in the history
…ord 'rdb$role_in_use'.
  • Loading branch information
pavel-zotov committed Dec 6, 2016
1 parent bb092f4 commit 4ff61ca
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/functional/syspriv/create_user_types.fbt
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
select
current_user as who_ami
,r.rdb$role_name
,rdb$role_in_use(r.rdb$role_name) as rdb$role_in_use
,rdb$role_in_use(r.rdb$role_name) as RDB_ROLE_IN_USE
,r.rdb$system_privileges
from mon$database m cross join rdb$roles r;
commit;
Expand Down Expand Up @@ -93,12 +93,12 @@
"""
WHO_AMI U01
RDB$ROLE_NAME RDB$ADMIN
RDB$ROLE_IN_USE <false>
RDB_ROLE_IN_USE <false>
RDB$SYSTEM_PRIVILEGES FFFFFFFFFFFFFFFF

WHO_AMI U01
RDB$ROLE_NAME ROLE_FOR_CREATE_USER_TYPES
RDB$ROLE_IN_USE <true>
RDB_ROLE_IN_USE <true>
RDB$SYSTEM_PRIVILEGES 0800000000000000

Records affected: 2
Expand Down

0 comments on commit 4ff61ca

Please sign in to comment.