X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FDBIx%2FClass%2FStorage%2FDBI%2FPg.pm;h=fcdab67b21df2eb761e39757e10f8f2c33743440;hb=3b4c4d727a91b9091efe2b3a34193b9abf14313f;hp=0dc7ea8cbc5626ec0676f35e51846dfa27b13154;hpb=9aec3ec60e053fc70810822c75b1008acdccd8b0;p=dbsrgits%2FDBIx-Class.git diff --git a/lib/DBIx/Class/Storage/DBI/Pg.pm b/lib/DBIx/Class/Storage/DBI/Pg.pm index 0dc7ea8..fcdab67 100644 --- a/lib/DBIx/Class/Storage/DBI/Pg.pm +++ b/lib/DBIx/Class/Storage/DBI/Pg.pm @@ -3,10 +3,7 @@ package DBIx::Class::Storage::DBI::Pg; use strict; use warnings; -use base qw/ - DBIx::Class::Storage::DBI::MultiColumnIn -/; -use mro 'c3'; +use base qw/DBIx::Class::Storage::DBI/; use Scope::Guard (); use Context::Preserve 'preserve_context'; @@ -17,6 +14,7 @@ use namespace::clean; __PACKAGE__->sql_limit_dialect ('LimitOffset'); __PACKAGE__->sql_quote_char ('"'); __PACKAGE__->datetime_parser_type ('DateTime::Format::Pg'); +__PACKAGE__->_use_multicolumn_in (1); sub _determine_supports_insert_returning { return shift->_server_info->{normalized_dbms_version} >= 8.002 @@ -50,7 +48,7 @@ sub last_insert_id { for my $col (@cols) { my $seq = ( $col_info->{$col}{sequence} ||= $self->dbh_do('_dbh_get_autoinc_seq', $source, $col) ) or $self->throw_exception( sprintf( - 'could not determine sequence for column %s.%s, please consider adding a schema-qualified sequence to its column info', + "Could not determine sequence for column '%s.%s', please consider adding a schema-qualified sequence to its column info", $source->name, $col, )); @@ -97,7 +95,7 @@ sub _dbh_get_autoinc_seq { $seq_expr = '' unless defined $seq_expr; $schema = "$schema." if defined $schema && length $schema; $self->throw_exception( sprintf ( - 'no sequence found for %s%s.%s, check the RDBMS table definition or explicitly set the '. + "No sequence found for '%s%s.%s', check the RDBMS table definition or explicitly set the ". "'sequence' for this column in %s", $schema ? "$schema." : '', $table, @@ -106,7 +104,7 @@ sub _dbh_get_autoinc_seq { )); } - return $1; + return $1; # exception thrown unless match is made above } # custom method for fetching column default, since column_info has a @@ -164,33 +162,34 @@ sub sqlt_type { return 'PostgreSQL'; } -my $type_cache; sub bind_attribute_by_data_type { my ($self,$data_type) = @_; - # Ask for a DBD::Pg with array support - # pg uses (used?) version::qv() - require DBD::Pg; - - if ($self->_server_info->{normalized_dbms_version} >= 9.0) { - if (not try { DBD::Pg->VERSION('2.17.2') }) { - carp_once( __PACKAGE__.': BYTEA columns are known to not work on Pg >=' - . " 9.0 with DBD::Pg < 2.17.2\n" ); + if ($self->_is_binary_lob_type($data_type)) { + # this is a hot-ish codepath, use an escape flag to minimize + # amount of function/method calls + # additionally version.pm is cock, and memleaks on multiple + # ->VERSION calls + # the flag is stored in the DBD namespace, so that Class::Unload + # will work (unlikely, but still) + unless ($DBD::Pg::__DBIC_DBD_VERSION_CHECK_DONE__) { + if ($self->_server_info->{normalized_dbms_version} >= 9.0) { + try { DBD::Pg->VERSION('2.17.2'); 1 } or carp ( + __PACKAGE__.': BYTEA columns are known to not work on Pg >= 9.0 with DBD::Pg < 2.17.2' + ); + } + elsif (not try { DBD::Pg->VERSION('2.9.2'); 1 } ) { carp ( + __PACKAGE__.': DBD::Pg 2.9.2 or greater is strongly recommended for BYTEA column support' + )} + + $DBD::Pg::__DBIC_DBD_VERSION_CHECK_DONE__ = 1; } - } - elsif (not try { DBD::Pg->VERSION('2.9.2') }) { - carp_once( __PACKAGE__.': DBD::Pg 2.9.2 or greater is strongly recommended' - . "for BYTEA column support.\n" ); - } - # cache the result of _is_binary_lob_type - if (!exists $type_cache->{$data_type}) { - $type_cache->{$data_type} = $self->_is_binary_lob_type($data_type) - ? +{ pg_type => DBD::Pg::PG_BYTEA() } - : undef + return { pg_type => DBD::Pg::PG_BYTEA() }; + } + else { + return undef; } - - $type_cache->{$data_type}; } sub _exec_svp_begin {