next::method, not next::columns_info_for
Brandon L. Black [Mon, 24 Jul 2006 13:20:56 +0000 (13:20 +0000)]
lib/DBIx/Class/Storage/DBI/Oracle.pm

index 935d46b..d5b605f 100644 (file)
@@ -41,7 +41,7 @@ sub get_autoinc_seq {
 sub columns_info_for {
   my ($self, $table) = @_;
 
-  $self->next::columns_info_for($self, uc($table));
+  $self->next::method($self, uc($table));
 }