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

Skip to content

Commit 82e13c2

Browse files
committed
added BE_BETWEEN to the list of utplsql objects in installer
1 parent 0ec2645 commit 82e13c2

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

source/install.sql

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ prompt Validating installation
142142
-- erors only. ignore warnings
143143
select * from user_errors
144144
where name not like 'BIN$%' --not recycled
145-
and (name like 'UT%' or name in ('BE_FALSE','BE_LIKE','BE_NOT_NULL','BE_NULL','BE_TRUE','EQUAL','MATCH')) -- utplsql objects
145+
and (name like 'UT%' or name in ('BE_FALSE','BE_LIKE','BE_NOT_NULL','BE_NULL','BE_TRUE','EQUAL','MATCH','BE_BETWEEN')) -- utplsql objects
146146
and attribute = 'ERROR'
147147
/
148148

@@ -153,7 +153,7 @@ begin
153153
into l_cnt
154154
from user_errors
155155
where name not like 'BIN$%'
156-
and (name like 'UT%' or name in ('BE_FALSE','BE_LIKE','BE_NOT_NULL','BE_NULL','BE_TRUE','EQUAL','MATCH'))
156+
and (name like 'UT%' or name in ('BE_FALSE','BE_LIKE','BE_NOT_NULL','BE_NULL','BE_TRUE','EQUAL','MATCH','BE_BETWEEN'))
157157
and attribute = 'ERROR';
158158
if l_cnt > 0 then
159159
raise_application_error(-20000, 'Not all sources were successfully installed.');

0 commit comments

Comments
 (0)