diff --git a/modules/Bio/EnsEMBL/DBSQL/AttributeAdaptor.pm b/modules/Bio/EnsEMBL/DBSQL/AttributeAdaptor.pm index 7316b27f77223f7cac73b897a1ba75e6d57fafe8..4478f0d556b9064cc1f42fd64ed2f6356a5fc782 100644 --- a/modules/Bio/EnsEMBL/DBSQL/AttributeAdaptor.pm +++ b/modules/Bio/EnsEMBL/DBSQL/AttributeAdaptor.pm @@ -121,8 +121,7 @@ sub store_batch_on_Object { } sub _store_batch_rows { - my ($self, $type, $rows) = @_; - my $table = lc($type); + my ($self, $table, $rows) = @_; if (scalar(@$rows) > 0) { $self->dbc()->sql_helper()->execute_update(-SQL => 'INSERT INTO ' . $table . '_attrib() VALUES' . join(',', @$rows)); }