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

Skip to content
Merged
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
Next Next commit
Fixes to annotation parsing.
Resolves #1088

Changed tests to reproduce issue with `dbms_preprocessor` failing to parse source that start with:
`package owner.name authid definer is ...`
  • Loading branch information
jgebal committed Aug 3, 2020
commit 81d4194383ec00cf2e6cdf10da0443f91256bdc5
6 changes: 3 additions & 3 deletions test/ut3_tester_helper/annotation_cache_helper.pkb
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ create or replace package body annotation_cache_helper as
pragma autonomous_transaction;
begin
execute immediate
'create or replace package ut3_cache_test_owner.granted_test_suite is
'create or replace package ut3_cache_test_owner.granted_test_suite authid definer is
--%suite

--%test
Expand All @@ -19,7 +19,7 @@ create or replace package body annotation_cache_helper as
procedure test2 is begin ut3_develop.ut.expect( 1 ).to_equal( 1 ); end;
end;';
execute immediate
'create or replace package ut3_cache_test_owner.not_granted_test_suite is
'create or replace package ut3_cache_test_owner.not_granted_test_suite authid definer is
--%suite

--%test
Expand Down Expand Up @@ -54,7 +54,7 @@ create or replace package body annotation_cache_helper as
pragma autonomous_transaction;
begin
execute immediate
'create or replace package ut3_cache_test_owner.new_suite is
'create or replace package ut3_cache_test_owner.new_suite authid definer is
--%suite

--%test
Expand Down