I tracked some strange warnings on using PK::Auto against Oracle down to 
the simple fix in the attached patch.

-- 
Michael
--- lib/DBIx/Class/Storage/DBI/Oracle.pm~       2006-08-18 12:00:27.000000000 
+0100
+++ lib/DBIx/Class/Storage/DBI/Oracle.pm        2006-09-12 14:41:40.352638103 
+0100
@@ -41,7 +41,7 @@
 sub columns_info_for {
   my ($self, $table) = @_;
 
-  $self->next::method($self, uc($table));
+  $self->next::method(uc($table));
 }
 
 
_______________________________________________
List: http://lists.rawmode.org/cgi-bin/mailman/listinfo/dbix-class
Wiki: http://dbix-class.shadowcatsystems.co.uk/
IRC: irc.perl.org#dbix-class
SVN: http://dev.catalyst.perl.org/repos/bast/trunk/DBIx-Class/
Searchable Archive: http://www.mail-archive.com/[email protected]/

Reply via email to