Use prepared statement from the start for populate on PostgreSQL
[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
be64931c 6use base qw/DBIx::Class::Storage::DBI/;
843f8ecd 7
4d4dc518 8use Scope::Guard ();
6298a324 9use Context::Preserve 'preserve_context';
ee53ca0f 10use DBIx::Class::Carp;
74919a00 11use DBIx::Class::_Util 'modver_gt_or_eq';
6298a324 12use namespace::clean;
843f8ecd 13
6a247f33 14__PACKAGE__->sql_limit_dialect ('LimitOffset');
2b8cc2f2 15__PACKAGE__->sql_quote_char ('"');
6f7a118e 16__PACKAGE__->datetime_parser_type ('DateTime::Format::Pg');
be64931c 17__PACKAGE__->_use_multicolumn_in (1);
6a247f33 18
bbdda281 19sub _determine_supports_insert_returning {
20 return shift->_server_info->{normalized_dbms_version} >= 8.002
21 ? 1
22 : 0
23 ;
38d5ea9f 24}
25
e96a93df 26sub with_deferred_fk_checks {
27 my ($self, $sub) = @_;
28
4d4dc518 29 my $txn_scope_guard = $self->txn_scope_guard;
30
31 $self->_do_query('SET CONSTRAINTS ALL DEFERRED');
38d5ea9f 32
ab7c6418 33 my $sg = Scope::Guard->new(sub {
34 $self->_do_query('SET CONSTRAINTS ALL IMMEDIATE');
35 });
36
37 return preserve_context { $sub->() } after => sub { $txn_scope_guard->commit };
e96a93df 38}
39
bab40dee 40# only used when INSERT ... RETURNING is disabled
38d5ea9f 41sub last_insert_id {
42 my ($self,$source,@cols) = @_;
43
44 my @values;
45
52416317 46 my $col_info = $source->columns_info(\@cols);
47
38d5ea9f 48 for my $col (@cols) {
52416317 49 my $seq = ( $col_info->{$col}{sequence} ||= $self->dbh_do('_dbh_get_autoinc_seq', $source, $col) )
38d5ea9f 50 or $self->throw_exception( sprintf(
e705f529 51 "Could not determine sequence for column '%s.%s', please consider adding a schema-qualified sequence to its column info",
38d5ea9f 52 $source->name,
53 $col,
54 ));
55
56 push @values, $self->_dbh->last_insert_id(undef, undef, undef, undef, {sequence => $seq});
57 }
58
59 return @values;
60}
61
4d4dc518 62sub _sequence_fetch {
63 my ($self, $function, $sequence) = @_;
64
65 $self->throw_exception('No sequence to fetch') unless $sequence;
38d5ea9f 66
4d4dc518 67 my ($val) = $self->_get_dbh->selectrow_array(
07cda1c5 68 sprintf ("select %s('%s')", $function, (ref $sequence eq 'SCALAR') ? $$sequence : $sequence)
4d4dc518 69 );
70
71 return $val;
38d5ea9f 72}
9a0b7b26 73
2d424996 74sub _dbh_get_autoinc_seq {
75 my ($self, $dbh, $source, $col) = @_;
0063119f 76
2d424996 77 my $schema;
78 my $table = $source->name;
0063119f 79
2d424996 80 # deref table name if it needs it
81 $table = $$table
82 if ref $table eq 'SCALAR';
0063119f 83
2d424996 84 # parse out schema name if present
85 if( $table =~ /^(.+)\.(.+)$/ ) {
86 ( $schema, $table ) = ( $1, $2 );
87 }
0680ac39 88
2d424996 89 # get the column default using a Postgres-specific pg_catalog query
90 my $seq_expr = $self->_dbh_get_column_default( $dbh, $schema, $table, $col );
91
92 # if no default value is set on the column, or if we can't parse the
93 # default value as a sequence, throw.
5861223d 94 unless ( defined $seq_expr and $seq_expr =~ /^nextval\(+'([^']+)'::(?:text|regclass)\)/i ) {
2d424996 95 $seq_expr = '' unless defined $seq_expr;
96 $schema = "$schema." if defined $schema && length $schema;
d3fdc7b8 97 $self->throw_exception( sprintf (
e705f529 98 "No sequence found for '%s%s.%s', check the RDBMS table definition or explicitly set the ".
d3fdc7b8 99 "'sequence' for this column in %s",
100 $schema ? "$schema." : '',
101 $table,
102 $col,
103 $source->source_name,
104 ));
777f7527 105 }
2d424996 106
d77ee505 107 return $1; # exception thrown unless match is made above
777f7527 108}
109
2d424996 110# custom method for fetching column default, since column_info has a
111# bug with older versions of DBD::Pg
112sub _dbh_get_column_default {
113 my ( $self, $dbh, $schema, $table, $col ) = @_;
114
115 # Build and execute a query into the pg_catalog to find the Pg
116 # expression for the default value for this column in this table.
117 # If the table name is schema-qualified, query using that specific
118 # schema name.
119
120 # Otherwise, find the table in the standard Postgres way, using the
121 # search path. This is done with the pg_catalog.pg_table_is_visible
122 # function, which returns true if a given table is 'visible',
123 # meaning the first table of that name to be found in the search
124 # path.
125
126 # I *think* we can be assured that this query will always find the
127 # correct column according to standard Postgres semantics.
128 #
129 # -- rbuels
130
131 my $sqlmaker = $self->sql_maker;
132 local $sqlmaker->{bindtype} = 'normal';
133
134 my ($where, @bind) = $sqlmaker->where ({
135 'a.attnum' => {'>', 0},
136 'c.relname' => $table,
137 'a.attname' => $col,
138 -not_bool => 'a.attisdropped',
139 (defined $schema && length $schema)
140 ? ( 'n.nspname' => $schema )
141 : ( -bool => \'pg_catalog.pg_table_is_visible(c.oid)' )
142 });
143
144 my ($seq_expr) = $dbh->selectrow_array(<<EOS,undef,@bind);
145
146SELECT
147 (SELECT pg_catalog.pg_get_expr(d.adbin, d.adrelid)
148 FROM pg_catalog.pg_attrdef d
149 WHERE d.adrelid = a.attrelid AND d.adnum = a.attnum AND a.atthasdef)
150FROM pg_catalog.pg_class c
151 LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
152 JOIN pg_catalog.pg_attribute a ON a.attrelid = c.oid
153$where
154
155EOS
156
157 return $seq_expr;
158}
159
22030f6f 160sub _dbh_execute_for_fetch {
161 #my ($self, $source, $sth, $tuple_status, @extra) = @_;
162
163 # This is used for bulk insert, so make sure we use a server-side
164 # prepared statement from the start, unless it's disabled
165 local $_[2]->{pg_switch_prepared} = 1 if
166 modver_gt_or_eq( 'DBD::Pg', '3.0.0' )
167 and
168 $_[2]->FETCH('pg_switch_prepared') > 0
169 ;
170
171 shift->next::method(@_);
172}
2d424996 173
4f533e8c 174sub sqlt_type {
175 return 'PostgreSQL';
176}
177
a71859b4 178sub bind_attribute_by_data_type {
179 my ($self,$data_type) = @_;
180
8892d8e5 181 if ($self->_is_binary_lob_type($data_type)) {
182 # this is a hot-ish codepath, use an escape flag to minimize
183 # amount of function/method calls
8892d8e5 184 # the flag is stored in the DBD namespace, so that Class::Unload
185 # will work (unlikely, but still)
74919a00 186 unless (
187 modver_gt_or_eq( 'DBD::Pg', '2.17.2' )
188 or
189 $DBD::Pg::__DBIC_DBD_VERSION_CHECK_DONE__
190 ) {
191 if ( $self->_server_info->{normalized_dbms_version} >= 9.0 ) {
192 $self->throw_exception(
193 'BYTEA columns are known to not work on Pg >= 9.0 with DBD::Pg < 2.17.2'
8892d8e5 194 );
195 }
74919a00 196 elsif (
18a2903b 197 require DBIx::Class::Optional::Dependencies
198 and
74919a00 199 my $missing = DBIx::Class::Optional::Dependencies->req_missing_for([qw( rdbms_pg binary_data )])
200 ) {
201 # FIXME - perhaps this needs to be an exception too...?
202 # too old to test sensibly...
203 carp (
204 __PACKAGE__ . ": BYTEA column support strongly recommends $missing"
205 )
206 }
8892d8e5 207
208 $DBD::Pg::__DBIC_DBD_VERSION_CHECK_DONE__ = 1;
9aec3ec6 209 }
ee53ca0f 210
8892d8e5 211 return { pg_type => DBD::Pg::PG_BYTEA() };
212 }
213 else {
214 return undef;
a71859b4 215 }
216}
217
90d7422f 218sub _exec_svp_begin {
eeb8cfeb 219 my ($self, $name) = @_;
adb3554a 220
90d7422f 221 $self->_dbh->pg_savepoint($name);
adb3554a 222}
223
90d7422f 224sub _exec_svp_release {
eeb8cfeb 225 my ($self, $name) = @_;
adb3554a 226
90d7422f 227 $self->_dbh->pg_release($name);
adb3554a 228}
229
90d7422f 230sub _exec_svp_rollback {
eeb8cfeb 231 my ($self, $name) = @_;
adb3554a 232
90d7422f 233 $self->_dbh->pg_rollback_to($name);
adb3554a 234}
235
c6375b4d 236sub deployment_statements {
237 my $self = shift;;
238 my ($schema, $type, $version, $dir, $sqltargs, @rest) = @_;
239
240 $sqltargs ||= {};
241
96736321 242 if (
243 ! exists $sqltargs->{producer_args}{postgres_version}
244 and
245 my $dver = $self->_server_info->{normalized_dbms_version}
246 ) {
247 $sqltargs->{producer_args}{postgres_version} = $dver;
c6375b4d 248 }
249
250 $self->next::method($schema, $type, $version, $dir, $sqltargs, @rest);
251}
252
843f8ecd 2531;
254
fd159e2a 255__END__
256
75d07914 257=head1 NAME
843f8ecd 258
259DBIx::Class::Storage::DBI::Pg - Automatic primary key class for PostgreSQL
260
261=head1 SYNOPSIS
262
d88ecca6 263 # In your result (table) classes
264 use base 'DBIx::Class::Core';
843f8ecd 265 __PACKAGE__->set_primary_key('id');
843f8ecd 266
267=head1 DESCRIPTION
268
269This class implements autoincrements for PostgreSQL.
270
7c0176a1 271=head1 POSTGRESQL SCHEMA SUPPORT
272
4f609014 273This driver supports multiple PostgreSQL schemas, with one caveat: for
6ff1d58c 274performance reasons, data about the search path, sequence names, and
275so forth is queried as needed and CACHED for subsequent uses.
7c0176a1 276
4f609014 277For this reason, once your schema is instantiated, you should not
278change the PostgreSQL schema search path for that schema's database
279connection. If you do, Bad Things may happen.
280
281You should do any necessary manipulation of the search path BEFORE
282instantiating your schema object, or as part of the on_connect_do
283option to connect(), for example:
7c0176a1 284
285 my $schema = My::Schema->connect
286 ( $dsn,$user,$pass,
287 { on_connect_do =>
288 [ 'SET search_path TO myschema, foo, public' ],
289 },
290 );
291
a2bd3796 292=head1 FURTHER QUESTIONS?
7c0176a1 293
a2bd3796 294Check the list of L<additional DBIC resources|DBIx::Class/GETTING HELP/SUPPORT>.
843f8ecd 295
a2bd3796 296=head1 COPYRIGHT AND LICENSE
843f8ecd 297
a2bd3796 298This module is free software L<copyright|DBIx::Class/COPYRIGHT AND LICENSE>
299by the L<DBIx::Class (DBIC) authors|DBIx::Class/AUTHORS>. You can
300redistribute it and/or modify it under the same terms as the
301L<DBIx::Class library|DBIx::Class/COPYRIGHT AND LICENSE>.