From: Peter Rabbitson Date: Fri, 31 Jan 2014 03:38:14 +0000 (+0100) Subject: Give Firebird (and Interbase) a common sqlt_type X-Git-Tag: v0.08270~3 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=f73701540fd3636cae006be6631f037275be6b53;hp=e5a62c46fad7960d70c8f7a825e7b10ff6ecf5c6;p=dbsrgits%2FDBIx-Class.git Give Firebird (and Interbase) a common sqlt_type Even though the parser/producer pair do not yet exist in SQLT, we also use this value as the basis for the lockfile on parallel tests, hence it is important --- diff --git a/Changes b/Changes index d2dea57..0323370 100644 --- a/Changes +++ b/Changes @@ -7,6 +7,11 @@ Revision history for DBIx::Class - Fix failure to load DateTime formatter when connecting to Firebird over ODBC + * Misc + - All drivers based on ::Storage::DBI::Firebird::Common now return the + same sqlt_type value (affects ::DBI::Interbase, ::DBI::Firebird and + ::DBI::ODBC::Firebird) + 0.08260 2014-01-28 18:52 (UTC) * New Features - A new zero-to-DBIC style manual: DBIx::Class::Manual::QuickStart diff --git a/lib/DBIx/Class/Storage/DBI/Firebird/Common.pm b/lib/DBIx/Class/Storage/DBI/Firebird/Common.pm index b665e75..7e6b518 100644 --- a/lib/DBIx/Class/Storage/DBI/Firebird/Common.pm +++ b/lib/DBIx/Class/Storage/DBI/Firebird/Common.pm @@ -28,6 +28,10 @@ __PACKAGE__->datetime_parser_type( 'DBIx::Class::Storage::DBI::InterBase::DateTime::Format' ); +sub sqlt_type { + return 'Firebird'; +} + sub _sequence_fetch { my ($self, $nextval, $sequence) = @_; 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