X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FDBIx%2FClass%2FStorage%2FDBI%2FPg.pm;h=91418a4f1beede0672b8edbafb3e768e6a74ad44;hb=bc144884abdf828846ecc29122647fdaf1ac2487;hp=d8ed989ce147cf1b8d225b57ef96382e06689cbd;hpb=0680ac39a01672213cac78f8a740ec2acbc82a3e;p=dbsrgits%2FDBIx-Class-Historic.git diff --git a/lib/DBIx/Class/Storage/DBI/Pg.pm b/lib/DBIx/Class/Storage/DBI/Pg.pm index d8ed989..91418a4 100644 --- a/lib/DBIx/Class/Storage/DBI/Pg.pm +++ b/lib/DBIx/Class/Storage/DBI/Pg.pm @@ -3,29 +3,38 @@ package DBIx::Class::Storage::DBI::Pg; use strict; use warnings; -use DBD::Pg; +use base qw/DBIx::Class::Storage::DBI::MultiColumnIn/; +use mro 'c3'; -use base qw/DBIx::Class::Storage::DBI/; +use DBD::Pg qw(:pg_types); -# __PACKAGE__->load_components(qw/PK::Auto/); +# Ask for a DBD::Pg with array support +warn "DBD::Pg 2.9.2 or greater is strongly recommended\n" + if ($DBD::Pg::VERSION < 2.009002); # pg uses (used?) version::qv() -# Warn about problematic versions of DBD::Pg -warn "DBD::Pg 1.49 is strongly recommended" - if ($DBD::Pg::VERSION < 1.49); +sub with_deferred_fk_checks { + my ($self, $sub) = @_; -sub _pg_last_insert_id { - my ($dbh, $seq) = @_; - $dbh->last_insert_id(undef,undef,undef,undef, {sequence => $seq}); + $self->last_dbh->do('SET CONSTRAINTS ALL DEFERRED'); + $sub->(); +} + +sub _dbh_last_insert_id { + my ($self, $dbh, $seq) = @_; + $dbh->last_insert_id(undef, undef, undef, undef, {sequence => $seq}); } sub last_insert_id { my ($self,$source,$col) = @_; my $seq = ($source->column_info($col)->{sequence} ||= $self->get_autoinc_seq($source,$col)); - $self->dbh_do(\&_pg_last_insert_id, $seq); + $self->throw_exception("could not fetch primary key for " . $source->name . ", could not " + . "get autoinc sequence for $col (check that table and column specifications are correct " + . "and in the correct case)") unless defined $seq; + $self->dbh_do('_dbh_last_insert_id', $seq); } -sub _pg_get_autoinc_seq { - my ($dbh, $schema, $table, @pri) = @_; +sub _dbh_get_autoinc_seq { + my ($self, $dbh, $schema, $table, @pri) = @_; while (my $col = shift @pri) { my $info = $dbh->column_info(undef,$schema,$table,$col)->fetchrow_hashref; @@ -41,12 +50,20 @@ sub _pg_get_autoinc_seq { sub get_autoinc_seq { my ($self,$source,$col) = @_; - + my @pri = $source->primary_columns; - my ($schema,$table) = $source->name =~ /^(.+)\.(.+)$/ ? ($1,$2) - : (undef,$source->name); - $self->dbh_do(\&_pg_get_autoinc_seq, $schema, $table, @pri); + my $schema; + my $table = $source->name; + + if (ref $table eq 'SCALAR') { + $table = $$table; + } + elsif ($table =~ /^(.+)\.(.+)$/) { + ($schema, $table) = ($1, $2); + } + + $self->dbh_do('_dbh_get_autoinc_seq', $schema, $table, @pri); } sub sqlt_type { @@ -55,6 +72,46 @@ sub sqlt_type { sub datetime_parser_type { return "DateTime::Format::Pg"; } +sub bind_attribute_by_data_type { + my ($self,$data_type) = @_; + + my $bind_attributes = { + bytea => { pg_type => DBD::Pg::PG_BYTEA }, + blob => { pg_type => DBD::Pg::PG_BYTEA }, + }; + + if( defined $bind_attributes->{$data_type} ) { + return $bind_attributes->{$data_type}; + } + else { + return; + } +} + +sub _sequence_fetch { + my ( $self, $type, $seq ) = @_; + my ($id) = $self->last_dbh->selectrow_array("SELECT nextval('${seq}')"); + return $id; +} + +sub _svp_begin { + my ($self, $name) = @_; + + $self->last_dbh->pg_savepoint($name); +} + +sub _svp_release { + my ($self, $name) = @_; + + $self->last_dbh->pg_release($name); +} + +sub _svp_rollback { + my ($self, $name) = @_; + + $self->last_dbh->pg_rollback_to($name); +} + 1; =head1 NAME