sub _populate_server_info {
my $self = shift;
+ return $self->next::method(@_) if ref $self ne __PACKAGE__;
+
local $SIG{__WARN__} = sub {}; # silence warning due to bug in DBD::InterBase
return $self->next::method(@_);
# releasing savepoints doesn't work, but that shouldn't matter
sub _svp_release { 1 }
-sub _populate_server_info {
- goto &DBIx::Class::Storage::DBI::_populate_server_info
-}
-
sub datetime_parser_type {
'DBIx::Class::Storage::DBI::ODBC::Firebird::DateTime::Format'
}