@@ -31,9 +31,12 @@ whenever oserror exit failure rollback
3131
3232alter session set current_schema = &&ut3_owner;
3333
34+ -- expectations
3435grant execute on &&ut3_owner..ut_expectation to public;
3536grant execute on &&ut3_owner..ut_expectation_compound to public;
3637grant execute on &&ut3_owner..ut_expectation_json to public;
38+
39+ -- matchers
3740grant execute on &&ut3_owner..ut_be_between to public;
3841grant execute on &&ut3_owner..ut_be_empty to public;
3942grant execute on &&ut3_owner..ut_be_false to public;
@@ -48,8 +51,22 @@ grant execute on &&ut3_owner..ut_be_true to public;
4851grant execute on &&ut3_owner..ut_equal to public;
4952grant execute on &&ut3_owner..ut_have_count to public;
5053grant execute on &&ut3_owner..ut_match to public;
54+
55+ -- public API
5156grant execute on &&ut3_owner..ut to public;
5257grant execute on &&ut3_owner..ut_runner to public;
58+ grant execute on &&ut3_owner..ut_file_mappings to public;
59+ grant execute on &&ut3_owner..ut_file_mapping to public;
60+ grant execute on &&ut3_owner..ut_file_mapper to public;
61+ grant execute on &&ut3_owner..ut_key_value_pairs to public;
62+ grant execute on &&ut3_owner..ut_key_value_pair to public;
63+
64+ -- generic types
65+ grant execute on &&ut3_owner..ut_varchar2_list to public;
66+ grant execute on &&ut3_owner..ut_varchar2_rows to public;
67+ grant execute on &&ut3_owner..ut_integer_list to public;
68+
69+ -- reporters
5370grant execute on &&ut3_owner..ut_debug_reporter to public;
5471grant execute on &&ut3_owner..ut_teamcity_reporter to public;
5572grant execute on &&ut3_owner..ut_xunit_reporter to public;
@@ -60,37 +77,39 @@ grant execute on &&ut3_owner..ut_coverage_html_reporter to public;
6077grant execute on &&ut3_owner..ut_coverage_sonar_reporter to public;
6178grant execute on &&ut3_owner..ut_coveralls_reporter to public;
6279grant execute on &&ut3_owner..ut_coverage_cobertura_reporter to public;
80+ grant execute on &&ut3_owner..ut_realtime_reporter to public;
81+ grant execute on &&ut3_owner..ut_sonar_test_reporter to public;
82+
83+ -- reporters base
6384grant execute on &&ut3_owner..ut_reporters to public;
64- grant execute on &&ut3_owner..ut_varchar2_list to public;
65- grant execute on &&ut3_owner..ut_varchar2_rows to public;
66- grant execute on &&ut3_owner..ut_integer_list to public;
6785grant execute on &&ut3_owner..ut_reporter_base to public;
6886grant execute on &&ut3_owner..ut_output_reporter_base to public;
69- grant execute on &&ut3_owner..ut_output_data_row to public;
70- grant execute on &&ut3_owner..ut_output_data_rows to public;
7187grant execute on &&ut3_owner..ut_coverage_reporter_base to public;
7288grant execute on &&ut3_owner..ut_console_reporter_base to public;
89+
90+ -- coverage
7391grant execute on &&ut3_owner..ut_coverage to public;
7492grant execute on &&ut3_owner..ut_coverage_options to public;
7593grant execute on &&ut3_owner..ut_coverage_helper to public;
94+
95+ -- outputs
96+ grant execute on &&ut3_owner..ut_output_data_row to public;
97+ grant execute on &&ut3_owner..ut_output_data_rows to public;
7698grant execute on &&ut3_owner..ut_output_buffer_base to public;
7799grant execute on &&ut3_owner..ut_output_table_buffer to public;
78100grant execute on &&ut3_owner..ut_output_clob_table_buffer to public;
79- grant execute on &&ut3_owner..ut_file_mappings to public;
80- grant execute on &&ut3_owner..ut_file_mapping to public;
81- grant execute on &&ut3_owner..ut_file_mapper to public;
82- grant execute on &&ut3_owner..ut_key_value_pairs to public;
83- grant execute on &&ut3_owner..ut_key_value_pair to public;
101+
102+ -- user temp tables
84103grant select , insert, update , delete on &&ut3_owner..ut_compound_data_tmp to public;
85104grant select , insert, update , delete on &&ut3_owner..ut_compound_data_diff_tmp to public;
86- grant execute on &&ut3_owner..ut_sonar_test_reporter to public;
105+
87106grant execute on &&ut3_owner..ut_annotations to public;
88107grant execute on &&ut3_owner..ut_annotation to public;
89- grant execute on &&ut3_owner..ut_annotation_manager to public;
90108grant execute on &&ut3_owner..ut_annotated_object to public;
91109grant execute on &&ut3_owner..ut_annotated_objects to public;
92110grant select on &&ut3_owner..ut_annotation_cache_info to public;
93111grant select on &&ut3_owner..ut_annotation_cache to public;
112+
94113grant execute on &&ut3_owner..ut_executables to public;
95114grant execute on &&ut3_owner..ut_executable_test to public;
96115grant select on &&ut3_owner..ut_suite_cache to public;
@@ -102,7 +121,6 @@ grant execute on &&ut3_owner..ut_annotation_objs_cache_info to public;
102121grant execute on &&ut3_owner..ut_annotation_obj_cache_info to public;
103122grant execute on &&ut3_owner..ut_suite_items_info to public;
104123grant execute on &&ut3_owner..ut_suite_item_info to public;
105- grant execute on &&ut3_owner..ut_realtime_reporter to public;
106124grant select , insert, delete , update on &&ut3_owner..dbmspcc_blocks to public;
107125grant select , insert, delete , update on &&ut3_owner..dbmspcc_runs to public;
108126grant select , insert, delete , update on &&ut3_owner..dbmspcc_units to public;
0 commit comments