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

Skip to content

Commit 6d160b1

Browse files
authored
Merge pull request #148 from jgebal/feature/api_isolation
Isolated API from CORE.
2 parents fa50762 + 326877b commit 6d160b1

73 files changed

Lines changed: 397 additions & 338 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.travis/create_utplsql_user.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ define ut3_tablespace = &3
1111

1212
create user &ut3_user identified by &ut3_password default tablespace &ut3_tablespace quota unlimited on &ut3_tablespace;
1313

14-
grant create session, create procedure, create type, create table to &ut3_user;
14+
grant create session, create procedure, create type, create table, create synonym to &ut3_user;
1515

1616
grant execute on dbms_pipe to &ut3_user;
1717
grant create job to &ut3_user;

source/api/be_between.syn

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
create synonym be_between for ut_be_between;

source/api/be_false.syn

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
create synonym be_false for ut_be_false;

source/api/be_greater_or_equal.syn

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
create synonym be_greater_or_equal for ut_be_greater_or_equal;

source/api/be_greater_than.syn

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
create synonym be_greater_than for ut_be_greater_than;

source/api/be_less_or_equal.syn

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
create synonym be_less_or_equal for ut_be_less_or_equal;

source/api/be_less_than.syn

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
create synonym be_less_than for ut_be_less_than;

source/api/be_like.syn

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
create synonym be_like for ut_be_like;

source/api/be_not_null.syn

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
create synonym be_not_null for ut_be_not_null;

source/api/be_null.syn

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
create synonym be_null for ut_be_null;

0 commit comments

Comments
 (0)