Committed by Greg Sabino Mullane <[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