X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Flib%2FDBICTest%2FSchema.pm;h=b39ecbc7daf5783ec9afd34ac895aca0fd2b5393;hb=f73701540fd3636cae006be6631f037275be6b53;hp=3aafef02fc7cb3977d1bb9b989f77df0ab7d3e31;hpb=e5a62c46fad7960d70c8f7a825e7b10ff6ecf5c6;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