-
Notifications
You must be signed in to change notification settings - Fork 189
Adding DDL trigger to speedup framework start #901
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 1 commit
96b8480
7a56fe7
71b50f7
db8ef50
b1d99f3
af42b6f
b2fcd95
29d74a1
4d38af1
566093a
aa313e5
242b2a3
a173b38
94a1c23
8f6d6c2
56803f7
62d683a
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
Added disabling trigger on annotation parser tests.
- Loading branch information
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -16,12 +16,17 @@ create or replace package ut_trigger_check authid definer is | |
| limitations under the License. | ||
| */ | ||
|
|
||
| gc_check_object_name constant varchar2(128) := 'UT3_TRIGGER_ALIVE'; | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Would that not be better to define in utils for example and refer to it via package constant in trigger and this package ? Its only called twice but one less line to maintain ?
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This needs to be removed as no longer used - thanks |
||
|
|
||
| /** | ||
| * checks if the trigger &&UT3_OWNER._PARSE is enabled and operational. | ||
| */ | ||
|
|
||
| function is_alive return boolean; | ||
|
|
||
| /** | ||
| * If called from a DDL trigger when creating object gc_check_object_name, sts alive flag to true | ||
| * Otherwise sets alive flag to false. | ||
| */ | ||
| procedure is_alive; | ||
|
|
||
| end; | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.