New $dbh capability handling - allows someone to say
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / Storage / DBI / Pg.pm
CommitLineData
843f8ecd 1package DBIx::Class::Storage::DBI::Pg;
2
3use strict;
4use warnings;
5
be860760 6use base qw/
7 DBIx::Class::Storage::DBI::MultiColumnIn
be860760 8/;
ac45262b 9use mro 'c3';
843f8ecd 10
ac45262b 11use DBD::Pg qw(:pg_types);
4d4dc518 12use Scope::Guard ();
6298a324 13use Context::Preserve 'preserve_context';
14use namespace::clean;
843f8ecd 15
ac45262b 16# Ask for a DBD::Pg with array support
21c63647 17warn __PACKAGE__.": DBD::Pg 2.9.2 or greater is strongly recommended\n"
ac45262b 18 if ($DBD::Pg::VERSION < 2.009002); # pg uses (used?) version::qv()
17614944 19
bbdda281 20sub _determine_supports_insert_returning {
21 return shift->_server_info->{normalized_dbms_version} >= 8.002
22 ? 1
23 : 0
24 ;
38d5ea9f 25}
26
e96a93df 27sub with_deferred_fk_checks {
28 my ($self, $sub) = @_;
29
4d4dc518 30 my $txn_scope_guard = $self->txn_scope_guard;
31
32 $self->_do_query('SET CONSTRAINTS ALL DEFERRED');
38d5ea9f 33
4d4dc518 34 my $sg = Scope::Guard->new(sub {
35 $self->_do_query('SET CONSTRAINTS ALL IMMEDIATE');
36 });
37
6298a324 38 return preserve_context { $sub->() } after => sub { $txn_scope_guard->commit };
e96a93df 39}
40
bab40dee 41# only used when INSERT ... RETURNING is disabled
38d5ea9f 42sub last_insert_id {
43 my ($self,$source,@cols) = @_;
44
45 my @values;
46
47 for my $col (@cols) {
48 my $seq = ( $source->column_info($col)->{sequence} ||= $self->dbh_do('_dbh_get_autoinc_seq', $source, $col) )
49 or $self->throw_exception( sprintf(
50 'could not determine sequence for column %s.%s, please consider adding a schema-qualified sequence to its column info',
51 $source->name,
52 $col,
53 ));
54
55 push @values, $self->_dbh->last_insert_id(undef, undef, undef, undef, {sequence => $seq});
56 }
57
58 return @values;
59}
60
4d4dc518 61sub _sequence_fetch {
62 my ($self, $function, $sequence) = @_;
63
64 $self->throw_exception('No sequence to fetch') unless $sequence;
38d5ea9f 65
4d4dc518 66 my ($val) = $self->_get_dbh->selectrow_array(
734868da 67 sprintf ("select %s('%s')", $function, $sequence)
4d4dc518 68 );
69
70 return $val;
38d5ea9f 71}
9a0b7b26 72
2d424996 73sub _dbh_get_autoinc_seq {
74 my ($self, $dbh, $source, $col) = @_;
0063119f 75
2d424996 76 my $schema;
77 my $table = $source->name;
0063119f 78
2d424996 79 # deref table name if it needs it
80 $table = $$table
81 if ref $table eq 'SCALAR';
0063119f 82
2d424996 83 # parse out schema name if present
84 if( $table =~ /^(.+)\.(.+)$/ ) {
85 ( $schema, $table ) = ( $1, $2 );
86 }
0680ac39 87
2d424996 88 # get the column default using a Postgres-specific pg_catalog query
89 my $seq_expr = $self->_dbh_get_column_default( $dbh, $schema, $table, $col );
90
91 # if no default value is set on the column, or if we can't parse the
92 # default value as a sequence, throw.
5861223d 93 unless ( defined $seq_expr and $seq_expr =~ /^nextval\(+'([^']+)'::(?:text|regclass)\)/i ) {
2d424996 94 $seq_expr = '' unless defined $seq_expr;
95 $schema = "$schema." if defined $schema && length $schema;
d3fdc7b8 96 $self->throw_exception( sprintf (
97 'no sequence found for %s%s.%s, check the RDBMS table definition or explicitly set the '.
98 "'sequence' for this column in %s",
99 $schema ? "$schema." : '',
100 $table,
101 $col,
102 $source->source_name,
103 ));
777f7527 104 }
2d424996 105
106 return $1;
777f7527 107}
108
2d424996 109# custom method for fetching column default, since column_info has a
110# bug with older versions of DBD::Pg
111sub _dbh_get_column_default {
112 my ( $self, $dbh, $schema, $table, $col ) = @_;
113
114 # Build and execute a query into the pg_catalog to find the Pg
115 # expression for the default value for this column in this table.
116 # If the table name is schema-qualified, query using that specific
117 # schema name.
118
119 # Otherwise, find the table in the standard Postgres way, using the
120 # search path. This is done with the pg_catalog.pg_table_is_visible
121 # function, which returns true if a given table is 'visible',
122 # meaning the first table of that name to be found in the search
123 # path.
124
125 # I *think* we can be assured that this query will always find the
126 # correct column according to standard Postgres semantics.
127 #
128 # -- rbuels
129
130 my $sqlmaker = $self->sql_maker;
131 local $sqlmaker->{bindtype} = 'normal';
132
133 my ($where, @bind) = $sqlmaker->where ({
134 'a.attnum' => {'>', 0},
135 'c.relname' => $table,
136 'a.attname' => $col,
137 -not_bool => 'a.attisdropped',
138 (defined $schema && length $schema)
139 ? ( 'n.nspname' => $schema )
140 : ( -bool => \'pg_catalog.pg_table_is_visible(c.oid)' )
141 });
142
143 my ($seq_expr) = $dbh->selectrow_array(<<EOS,undef,@bind);
144
145SELECT
146 (SELECT pg_catalog.pg_get_expr(d.adbin, d.adrelid)
147 FROM pg_catalog.pg_attrdef d
148 WHERE d.adrelid = a.attrelid AND d.adnum = a.attnum AND a.atthasdef)
149FROM pg_catalog.pg_class c
150 LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
151 JOIN pg_catalog.pg_attribute a ON a.attrelid = c.oid
152$where
153
154EOS
155
156 return $seq_expr;
157}
158
159
4f533e8c 160sub sqlt_type {
161 return 'PostgreSQL';
162}
163
45fa8288 164sub datetime_parser_type { return "DateTime::Format::Pg"; }
165
a71859b4 166sub bind_attribute_by_data_type {
167 my ($self,$data_type) = @_;
168
169 my $bind_attributes = {
eda28767 170 bytea => { pg_type => DBD::Pg::PG_BYTEA },
5ba88f68 171 blob => { pg_type => DBD::Pg::PG_BYTEA },
a71859b4 172 };
d4daee7b 173
a71859b4 174 if( defined $bind_attributes->{$data_type} ) {
9fdf90df 175 return $bind_attributes->{$data_type};
a71859b4 176 }
177 else {
178 return;
179 }
180}
181
adb3554a 182sub _svp_begin {
eeb8cfeb 183 my ($self, $name) = @_;
adb3554a 184
9ae966b9 185 $self->_get_dbh->pg_savepoint($name);
adb3554a 186}
187
188sub _svp_release {
eeb8cfeb 189 my ($self, $name) = @_;
adb3554a 190
9ae966b9 191 $self->_get_dbh->pg_release($name);
adb3554a 192}
193
194sub _svp_rollback {
eeb8cfeb 195 my ($self, $name) = @_;
adb3554a 196
9ae966b9 197 $self->_get_dbh->pg_rollback_to($name);
adb3554a 198}
199
c6375b4d 200sub deployment_statements {
201 my $self = shift;;
202 my ($schema, $type, $version, $dir, $sqltargs, @rest) = @_;
203
204 $sqltargs ||= {};
205
96736321 206 if (
207 ! exists $sqltargs->{producer_args}{postgres_version}
208 and
209 my $dver = $self->_server_info->{normalized_dbms_version}
210 ) {
211 $sqltargs->{producer_args}{postgres_version} = $dver;
c6375b4d 212 }
213
214 $self->next::method($schema, $type, $version, $dir, $sqltargs, @rest);
215}
216
843f8ecd 2171;
218
fd159e2a 219__END__
220
75d07914 221=head1 NAME
843f8ecd 222
223DBIx::Class::Storage::DBI::Pg - Automatic primary key class for PostgreSQL
224
225=head1 SYNOPSIS
226
d88ecca6 227 # In your result (table) classes
228 use base 'DBIx::Class::Core';
843f8ecd 229 __PACKAGE__->set_primary_key('id');
230 __PACKAGE__->sequence('mysequence');
231
232=head1 DESCRIPTION
233
234This class implements autoincrements for PostgreSQL.
235
7c0176a1 236=head1 POSTGRESQL SCHEMA SUPPORT
237
4f609014 238This driver supports multiple PostgreSQL schemas, with one caveat: for
6ff1d58c 239performance reasons, data about the search path, sequence names, and
240so forth is queried as needed and CACHED for subsequent uses.
7c0176a1 241
4f609014 242For this reason, once your schema is instantiated, you should not
243change the PostgreSQL schema search path for that schema's database
244connection. If you do, Bad Things may happen.
245
246You should do any necessary manipulation of the search path BEFORE
247instantiating your schema object, or as part of the on_connect_do
248option to connect(), for example:
7c0176a1 249
250 my $schema = My::Schema->connect
251 ( $dsn,$user,$pass,
252 { on_connect_do =>
253 [ 'SET search_path TO myschema, foo, public' ],
254 },
255 );
256
7ff926e6 257=head1 AUTHORS
7c0176a1 258
7ff926e6 259See L<DBIx::Class/CONTRIBUTORS>
843f8ecd 260
261=head1 LICENSE
262
263You may distribute this code under the same terms as Perl itself.
264
265=cut