From: Brandon L. Black Date: Mon, 24 Jul 2006 13:20:56 +0000 (+0000) Subject: next::method, not next::columns_info_for X-Git-Tag: v0.07002~72 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=82c82838e7942dbd19e60e7a1ca8cade5c6a65d6;p=dbsrgits%2FDBIx-Class.git next::method, not next::columns_info_for --- diff --git a/lib/DBIx/Class/Storage/DBI/Oracle.pm b/lib/DBIx/Class/Storage/DBI/Oracle.pm index 935d46b..d5b605f 100644 --- a/lib/DBIx/Class/Storage/DBI/Oracle.pm +++ b/lib/DBIx/Class/Storage/DBI/Oracle.pm @@ -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)); }