Skip to content

Commit 3a2ff00

Browse files
committed
Merge branch 'develop' of https://github.com/utPLSQL/utPLSQL into feature/12cov_extended
2 parents 57f7a4f + 57cba82 commit 3a2ff00

35 files changed

+1014
-246
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;
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
28.9 KB
Loading

0 commit comments

Comments
 (0)