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

Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fixed uninstall script and constant.
Disabled `-scc` flag in tests
  • Loading branch information
jgebal committed Apr 17, 2019
commit 71b50f798916a4c5cb1847d5510e0f9df2e1cb7d
4 changes: 2 additions & 2 deletions source/core/annotations/ut_trigger_check.pkb
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ create or replace package body ut_trigger_check is
limitations under the License.
*/

g_is_trigger_live boolean := false;
gc_check_object_name varchar2(128) := 'UT3_TRIGGER_ALIVE';
g_is_trigger_live boolean := false;
gc_check_object_name constant varchar2(128) := 'UT3_TRIGGER_ALIVE';

function is_alive return boolean is
pragma autonomous_transaction;
Expand Down
5 changes: 5 additions & 0 deletions source/uninstall_objects.sql
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
set echo on

drop trigger ut_trigger_annotation_parsing;

drop synonym ut3_trigger_alive;

drop synonym be_between;

drop synonym have_count;
Expand Down