Skip to content

Commit 9897247

Browse files
committed
Merge remote-tracking branch 'origin/develop' into feature/support_of_context
# Conflicts: # docs/userguide/annotations.md # source/api/ut_runner.pkb # source/core/types/ut_run.tps # source/core/ut_utils.pkb # source/core/ut_utils.pks # source/reporters/ut_xunit_reporter.tpb # test/install_tests.sql
2 parents e672ef0 + 24c962b commit 9897247

File tree

98 files changed

+3058
-901
lines changed

Some content is hidden

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

98 files changed

+3058
-901
lines changed

development/cleanup.sh

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,17 @@ git rev-parse && cd "$(git rev-parse --show-cdup)"
77

88
"${SQLCLI}" sys/${ORACLE_PWD}@//${CONNECTION_STR} AS SYSDBA <<-SQL
99
set echo on
10+
begin
11+
for x in (
12+
select * from dba_objects
13+
where owner in ( upper('${UT3_RELEASE_VERSION_SCHEMA}'), upper('${UT3_OWNER}') )
14+
and object_name like 'SYS_PLSQL%')
15+
loop
16+
execute immediate 'drop type '||x.owner||'.'||x.object_name||' force';
17+
end loop;
18+
end;
19+
/
20+
1021
drop user ${UT3_OWNER} cascade;
1122
drop user ${UT3_RELEASE_VERSION_SCHEMA} cascade;
1223
drop user ${UT3_TESTER} cascade;

docs/about/authors.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
| Robert Love | [rlove](https://github.com/rlove)
1212
| Vinicius Avellar | [viniciusam](https://github.com/viniciusam/)
1313
| Samuel Nitsche | [pesse](https://github.com/pesse/)
14+
| Lukasz Wasylow | [lwasylow](https://github.com/lwasylow/)
1415

1516

1617

3.87 KB
Loading
2.68 KB
Loading
27.6 KB
Loading
47.9 KB
Loading
27.7 KB
Loading
47.9 KB
Loading
21 KB
Loading
6.73 KB
Loading

0 commit comments

Comments
 (0)