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

Skip to content

Commit e83eeaf

Browse files
added grants ans synonyms for ut_sqldev_reporter
1 parent b1f6323 commit e83eeaf

5 files changed

Lines changed: 8 additions & 0 deletions

File tree

source/create_synonyms_and_grants_for_public.sql

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,7 @@ grant execute on &&ut3_owner..ut_annotation_objs_cache_info to public;
9797
grant execute on &&ut3_owner..ut_annotation_obj_cache_info to public;
9898
grant execute on &&ut3_owner..ut_suite_items_info to public;
9999
grant execute on &&ut3_owner..ut_suite_item_info to public;
100+
grant execute on &&ut3_owner..ut_sqldev_reporter to public;
100101
begin
101102
$if dbms_db_version.version = 12 and dbms_db_version.release >= 2 or dbms_db_version.version > 12 $then
102103
execute immediate 'grant select, insert, delete, update on &&ut3_owner..dbmspcc_blocks to public';
@@ -156,6 +157,7 @@ create public synonym ut_key_value_pair for &&ut3_owner..ut_key_value_pair;
156157
create public synonym ut_sonar_test_reporter for &&ut3_owner..ut_sonar_test_reporter;
157158
create public synonym ut_suite_items_info for &&ut3_owner..ut_suite_items_info;
158159
create public synonym ut_suite_item_info for &&ut3_owner..ut_suite_item_info;
160+
create public synonym ut_sqldev_reporter for &&ut3_owner..ut_sqldev_reporter;
159161
begin
160162
$if dbms_db_version.version = 12 and dbms_db_version.release >= 2 or dbms_db_version.version > 12 $then
161163
execute immediate 'create public synonym dbmspcc_blocks for &&ut3_owner..dbmspcc_blocks';

source/create_user_grants.sql

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,7 @@ grant execute on &&ut3_owner..ut_annotation_cache_manager to &ut3_user;
115115
grant execute on &&ut3_owner..ut_annotation_parser to &ut3_user;
116116
grant execute on &&ut3_owner..ut_annotation_objs_cache_info to &ut3_user;
117117
grant execute on &&ut3_owner..ut_annotation_obj_cache_info to &ut3_user;
118+
grant execute on &&ut3_owner..ut_sqldev_reporter to &ut3_user;
118119
begin
119120
$if dbms_db_version.version = 12 and dbms_db_version.release >= 2 or dbms_db_version.version > 12 $then
120121
execute immediate 'grant select, insert, delete, update on &&ut3_owner..dbmspcc_blocks to &ut3_user';

source/create_user_synonyms.sql

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,7 @@ create or replace synonym &ut3_user..ut_key_value_pairs for &&ut3_owner..ut_key_
9898
create or replace synonym &ut3_user..ut_key_value_pair for &&ut3_owner..ut_key_value_pair;
9999
create or replace synonym &ut3_user..ut_compound_data_tmp for &&ut3_owner..ut_cursor_data;
100100
create or replace synonym &ut3_user..ut_sonar_test_reporter for &&ut3_owner..ut_sonar_test_reporter;
101+
create or replace synonym &ut3_user..ut_sqldev_reporter for &&ut3_owner..ut_sqldev_reporter;
101102
begin
102103
$if dbms_db_version.version = 12 and dbms_db_version.release >= 2 or dbms_db_version.version > 12 $then
103104
execute immediate 'create or replace synonym &ut3_user..dbmspcc_blocks for &&ut3_owner..dbmspcc_blocks';

source/install.sql

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -292,6 +292,8 @@ prompt Installing DBMSPLSQL Tables objects into &&ut3_owner schema
292292
@@install_component.sql 'reporters/ut_coveralls_reporter.tpb'
293293
@@install_component.sql 'reporters/ut_coverage_cobertura_reporter.tps'
294294
@@install_component.sql 'reporters/ut_coverage_cobertura_reporter.tpb'
295+
@@install_component.sql 'reporters/ut_sqldev_reporter.tps'
296+
@@install_component.sql 'reporters/ut_sqldev_reporter.tpb'
295297

296298
@@install_component.sql 'api/be_between.syn'
297299
@@install_component.sql 'api/be_empty.syn'

source/uninstall_objects.sql

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,8 @@ drop type ut_coverage_html_reporter force;
3939

4040
drop type ut_sonar_test_reporter force;
4141

42+
drop type ut_sqldev_reporter force;
43+
4244
drop package ut_coverage;
4345

4446
drop package ut_coverage_helper;

0 commit comments

Comments
 (0)