1) Add an explicit error to columns_info_for if the given schema/table combination...
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / Storage / DBI / Oracle.pm
index cd5449b..935d46b 100644 (file)
@@ -38,6 +38,13 @@ sub get_autoinc_seq {
   croak "Unable to find a sequence INSERT trigger on table '" . $source->name . "'.";
 }
 
+sub columns_info_for {
+  my ($self, $table) = @_;
+
+  $self->next::columns_info_for($self, uc($table));
+}
+
+
 1;
 
 =head1 NAME