[Dbix-class] Patch for Oracle columns_info_for method

Michael Gray mjg17 at eng.cam.ac.uk
Tue Sep 12 17:20:37 CEST 2006


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

-- 
Michael
-------------- next part --------------
--- 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));
 }
 
 


More information about the Dbix-class mailing list