bugfix to Oracle columns_info_for
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / Storage / DBI / Oracle.pm
index d5b605f..1cda2e3 100644 (file)
@@ -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));
 }