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