From: Brandon L. Black Date: Mon, 21 Aug 2006 17:33:02 +0000 (+0000) Subject: bugfix to Oracle columns_info_for X-Git-Tag: v0.07002~29 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=dd3583f282f6807ac7857c2d6b7a3ddd85a11ab4;p=dbsrgits%2FDBIx-Class.git bugfix to Oracle columns_info_for --- diff --git a/lib/DBIx/Class/Storage/DBI/Oracle.pm b/lib/DBIx/Class/Storage/DBI/Oracle.pm index d5b605f..1cda2e3 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::method($self, uc($table)); + $self->next::method(uc($table)); }