[Bast-commits] r4180 -
branches/DBIx-Class-Schema-Loader/current/lib/DBIx/Class/Schema/Loader
ilmari at dev.catalyst.perl.org
ilmari at dev.catalyst.perl.org
Wed Mar 12 02:55:08 GMT 2008
Author: ilmari
Date: 2008-03-12 02:55:07 +0000 (Wed, 12 Mar 2008)
New Revision: 4180
Modified:
branches/DBIx-Class-Schema-Loader/current/lib/DBIx/Class/Schema/Loader/DBI.pm
Log:
Don't re-execute column_info sth, it's already active.
Modified: branches/DBIx-Class-Schema-Loader/current/lib/DBIx/Class/Schema/Loader/DBI.pm
===================================================================
--- branches/DBIx-Class-Schema-Loader/current/lib/DBIx/Class/Schema/Loader/DBI.pm 2008-03-12 02:27:56 UTC (rev 4179)
+++ branches/DBIx-Class-Schema-Loader/current/lib/DBIx/Class/Schema/Loader/DBI.pm 2008-03-12 02:55:07 UTC (rev 4180)
@@ -212,7 +212,6 @@
my %result;
eval {
my $sth = $dbh->column_info( undef, $self->db_schema, $table, '%' );
- $sth->execute();
while ( my $info = $sth->fetchrow_hashref() ){
my %column_info;
$column_info{data_type} = $info->{TYPE_NAME};
More information about the Bast-commits
mailing list