[Bast-commits] r5940 - DBIx-Class/0.08/branches/prepare_cached/lib/DBIx/Class/Storage

solomon at dev.catalyst.perl.org solomon at dev.catalyst.perl.org
Tue Apr 21 20:30:43 GMT 2009


Author: solomon
Date: 2009-04-21 21:30:42 +0100 (Tue, 21 Apr 2009)
New Revision: 5940

Modified:
   DBIx-Class/0.08/branches/prepare_cached/lib/DBIx/Class/Storage/DBI.pm
Log:
Stop passing unused variable to Storage::DBI::sth().  wcgrep indicates this
should be safe to remove; SVN history indicates that it was needed when we
used to avoid using prepare_cached() for SELECT.


Modified: DBIx-Class/0.08/branches/prepare_cached/lib/DBIx/Class/Storage/DBI.pm
===================================================================
--- DBIx-Class/0.08/branches/prepare_cached/lib/DBIx/Class/Storage/DBI.pm	2009-04-21 20:20:21 UTC (rev 5939)
+++ DBIx-Class/0.08/branches/prepare_cached/lib/DBIx/Class/Storage/DBI.pm	2009-04-21 20:30:42 UTC (rev 5940)
@@ -1238,7 +1238,7 @@
 
   $self->_query_start( $sql, @$bind );
 
-  my $sth = $self->sth($sql,$op);
+  my $sth = $self->sth($sql);
 
   my $placeholder_index = 1; 
 




More information about the Bast-commits mailing list