Skip to content

Commit 62b0938

Browse files
committed
Fixing sqlplus references
1 parent 884eb35 commit 62b0938

4 files changed

Lines changed: 5 additions & 5 deletions

File tree

.travis/install_utplsql.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ set -ev
44

55
cd $UTPLSQL_DIR/source
66

7-
sqlplus -S -L / AS SYSDBA @install_headless.sql
7+
${SQLCLI} -S -L oracle/${ORACLE_PWD} AS SYSDBA @install_headless.sql
88

9-
sqlplus -L -S / AS SYSDBA <<SQL
9+
${SQLCLI} -L -S oracle/${ORACLE_PWD} AS SYSDBA <<SQL
1010
grant select any dictionary to ut3;
1111
exit
1212
SQL

.travis/setup_account.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
set -ev
44

5-
"$ORACLE_HOME/bin/sqlplus" -L -S / AS SYSDBA <<SQL
5+
${SQLCLI} -L -S oracle/${ORACLE_PWD} AS SYSDBA <<SQL
66
create user ${DB_USER} identified by ${DB_PASS} quota unlimited on USERS default tablespace USERS;
77
88
grant create session, create procedure, create type, create table, create sequence, create view to ${DB_USER};

source/install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
set -ev
44

5-
sqlplus -L -S ${DB_USER}/${DB_PASS} <<SQL
5+
${SQLCLI} -L -S ${DB_USER}/${DB_PASS} <<SQL
66
whenever sqlerror exit failure rollback
77
whenever oserror exit failure rollback
88

test/install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
set -ev
44

5-
sqlplus -L -S ${DB_USER}/${DB_PASS} <<SQL
5+
${SQLCLI} -L -S ${DB_USER}/${DB_PASS} <<SQL
66
whenever sqlerror exit failure rollback
77
whenever oserror exit failure rollback
88

0 commit comments

Comments
 (0)