@@ -, +, @@ (in cleanup) Can't locate object method "_preserve_foreign_dbh" via package "Koha::Storage" at .../Koha/Storage.pm DBIx::Class::ResultSet::find(): Your storage class (Koha::Storage) does not set sql_limit_dialect and you have not supplied an explicit limit_dialect in your connection_info. DBIC will attempt to use the GenericSubQ dialect, which works on most databases but can be (and often is) painfully slow. Please file an RT ticket against 'Koha::Storage' . at /home/gmc/koha/C4/Members.pm line 840 --- Koha/Schema.pm | 2 +- Koha/Storage.pm | 16 ---------------- 2 files changed, 1 insertion(+), 17 deletions(-) delete mode 100644 Koha/Storage.pm --- a/Koha/Schema.pm +++ a/Koha/Schema.pm @@ -15,6 +15,6 @@ __PACKAGE__->load_namespaces; # Created by DBIx::Class::Schema::Loader v0.07025 @ 2013-10-14 20:56:21 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:oDUxXckmfk6H9YCjW8PZTw -__PACKAGE__->storage_type('Koha::Storage'); +# You can replace this text with custom content, and it will be preserved on regeneration 1; --- a/Koha/Storage.pm +++ a/Koha/Storage.pm @@ -1,16 +0,0 @@ -use utf8; -package Koha::Storage; - -use strict; -use warnings; - -use base 'DBIx::Class::Storage::DBI'; -sub DESTROY { - my $self = shift; - - # destroy just the object if not native to this process/thread - $self->_preserve_foreign_dbh; - - $self->_dbh(undef); -} -1; --