Skip to content

Commit 6e51195

Browse files
ancientwizarddjzort
authored andcommitted
Consistent permissions, typos, test cleanups (EZCONNECT VS TRADITIONAL)
1 parent 79c8823 commit 6e51195

File tree

8 files changed

+3
-3
lines changed

8 files changed

+3
-3
lines changed

dbdimp.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ struct imp_dbh_st {
6767
OCIServer *srvhp;
6868
OCISvcCtx *svchp;
6969
OCISession *seshp;
70-
SV *taf_function; /*User supplied TAF functiomn*/
70+
SV *taf_function; /*User supplied TAF function */
7171
taf_callback_t taf_ctx;
7272
int RowCacheSize; /* both of these are defined by DBI spec*/
7373
int RowsInCache; /* this vaue is RO and cannot be set*/

t/01base.t

100755100644
File mode changed.

t/05base.t

100755100644
File mode changed.

t/39attr.t

100755100644
File mode changed.

t/60reauth.t

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ if ( $uid1 eq $uid2 ) {
2727
}
2828

2929
my $dsn = oracle_test_dsn();
30-
my $dbh = DBI->connect( $dsn, $dbuser, 'WOOPS' );
30+
my $dbh = DBI->connect( $dsn, $dbuser, $ENV{ORACLE_PASSWD} || '' );
3131

3232
if ($dbh) {
3333
plan tests => 3;
@@ -37,5 +37,5 @@ else {
3737
}
3838

3939
is( ( $dbh->selectrow_array('SELECT USER FROM DUAL') )[0], $uid1, 'uid1' );
40-
ok( $dbh->func( $dbuser_2, 'WOOPS', 'reauthenticate' ), 'reauthenticate' );
40+
ok( $dbh->func( $dbuser_2, $ENV{ORACLE_PASSWD} || '', 'reauthenticate' ), 'reauthenticate' );
4141
is( ( $dbh->selectrow_array('SELECT USER FROM DUAL') )[0], $uid2, 'uid2' );

t/90-segv-threads.t

100755100644
File mode changed.

t/91-segv-fork.t

100755100644
File mode changed.

t/rt85886.t

100755100644
File mode changed.

0 commit comments

Comments
 (0)