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

Skip to content

Commit 11a2310

Browse files
committed
Fixed uninstall script and constant.
Disabled `-scc` flag in tests
1 parent bc8bf69 commit 11a2310

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

source/core/annotations/ut_trigger_check.pkb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ create or replace package body ut_trigger_check is
1616
limitations under the License.
1717
*/
1818

19-
g_is_trigger_live boolean := false;
20-
gc_check_object_name varchar2(128) := 'UT3_TRIGGER_ALIVE';
19+
g_is_trigger_live boolean := false;
20+
gc_check_object_name constant varchar2(128) := 'UT3_TRIGGER_ALIVE';
2121

2222
function is_alive return boolean is
2323
pragma autonomous_transaction;

source/uninstall_objects.sql

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
set echo on
2+
3+
drop trigger ut_trigger_annotation_parsing;
4+
5+
drop synonym ut3_trigger_alive;
6+
27
drop synonym be_between;
38

49
drop synonym have_count;

test/install_and_run_tests.sh

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,4 @@ time utPLSQL-cli/bin/utplsql run ${UT3_TESTER}/${UT3_TESTER_PASSWORD}@${CONNECTI
2020
-f=ut_sonar_test_reporter -o=test_results.xml \
2121
-f=ut_junit_reporter -o=junit_test_results.xml \
2222
-f=ut_tfs_junit_reporter -o=tfs_test_results.xml \
23-
-f=ut_documentation_reporter -o=test_results.log -s \
24-
-scc
23+
-f=ut_documentation_reporter -o=test_results.log -s

0 commit comments

Comments
 (0)