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