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