[DBD::Pg] Now that we are using login6, pass along the attributes from the connection call down the XS chain.
dbdpg-commits-gENoVmVU/[email protected]
| Newsgroups | gmane.comp.db.postgresql.dbdpg.cvs |
|---|---|
| Message-ID | <[email protected]> |
Committed by Greg Sabino Mullane <greg-O9fzpki4YnJWk0Htik3J/[email protected]> Now that we are using login6, pass along the attributes from the connection call down the XS chain. --- Pg.pm | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/Pg.pm b/Pg.pm index ef02049..ac4d9ba 100644 --- a/Pg.pm +++ b/Pg.pm @@ -222,7 +222,7 @@ use 5.006001; }); # Connect to the database.. - DBD::Pg::db::_login($dbh, $dbname, $user, $pass) or return undef; + DBD::Pg::db::_login($dbh, $dbname, $user, $pass, $attr) or return undef; my $version = $dbh->{pg_server_version}; $dbh->{private_dbdpg}{version} = $version; -- 1.7.0.5