[svn:DBD-Pg] r12456 - DBD-Pg/trunk
| Newsgroups | gmane.comp.db.postgresql.dbdpg.cvs |
|---|---|
| Message-ID | <[email protected]> |
Author: turnstep
Date: Mon Jan 19 11:55:31 2009
New Revision: 12456
Modified:
DBD-Pg/trunk/Changes
DBD-Pg/trunk/Pg.pm
Log:
POD typo
Modified: DBD-Pg/trunk/Changes
==============================================================================
--- DBD-Pg/trunk/Changes (original)
+++ DBD-Pg/trunk/Changes Mon Jan 19 11:55:31 2009
@@ -1,6 +1,10 @@
('GSM' is Greg Sabino Mullane, greg-738XdyZ4GzZWk0Htik3J/[email protected])
-2.11.8
+??
+
+ - Fixed minor bug in POD docs. [Tim Mattison]
+
+2.11.8 Released December 28, 2008
- Fix minor bug in t/12placeholders.t test (CPAN bug #41723)
Modified: DBD-Pg/trunk/Pg.pm
==============================================================================
--- DBD-Pg/trunk/Pg.pm (original)
+++ DBD-Pg/trunk/Pg.pm Mon Jan 19 11:55:31 2009
@@ -2795,7 +2795,7 @@
## Display all tables and views in the public schema:
$sth = $dbh->table_info('', 'public', undef, undef);
- for my $rel ({@$sth->fetchall_arrayref({})}) {
+ for my $rel (@{$sth->fetchall_arrayref({})}) {
print "$rel->{TABLE_TYPE} name is $rel->{TABLE_NAME}\n";
}