X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Flib%2FDBICTest%2FSchema.pm;h=b39ecbc7daf5783ec9afd34ac895aca0fd2b5393;hb=0488c7e1294791e01dc75dfe633454d0f4201384;hp=3aafef02fc7cb3977d1bb9b989f77df0ab7d3e31;hpb=0a03f5395cebe7227c53c32e13b5acb743a765db;p=dbsrgits%2FDBIx-Class.git diff --git a/t/lib/DBICTest/Schema.pm b/t/lib/DBICTest/Schema.pm index 3aafef0..b39ecbc 100644 --- a/t/lib/DBICTest/Schema.pm +++ b/t/lib/DBICTest/Schema.pm @@ -144,18 +144,6 @@ sub connection { ; }; - # DBD::Firebird and DBD::InterBase could very well talk to the same RDBMS - # make an educated guesstimate based on the DSN - # (worst case scenario we are wrong and the scripts have to wait on each - # other even without actually being able to interfere among themselves) - if ( - ($locktype||'') eq 'InterBase' - and - $_[0] =~ /firebird/i - ) { - $locktype = 'Firebird'; - } - # Never hold more than one lock. This solves the "lock in order" issues # unrelated tests may have # Also if there is no connection - there is no lock to be had