automatically turn on quoting for MySQL (RT#60469)
[dbsrgits/DBIx-Class-Schema-Loader.git] / lib / DBIx / Class / Schema / Loader / DBI / Pg.pm
CommitLineData
996be9ee 1package DBIx::Class::Schema::Loader::DBI::Pg;
2
3use strict;
4use warnings;
41968729 5use base qw/
6 DBIx::Class::Schema::Loader::DBI::Component::QuotedDefault
7 DBIx::Class::Schema::Loader::DBI
8/;
fa994d3c 9use Carp::Clan qw/^DBIx::Class/;
942bd5e0 10use mro 'c3';
996be9ee 11
4295c4b4 12our $VERSION = '0.07010';
32f784fc 13
996be9ee 14=head1 NAME
15
8f9d7ce5 16DBIx::Class::Schema::Loader::DBI::Pg - DBIx::Class::Schema::Loader::DBI
17PostgreSQL Implementation.
996be9ee 18
19=head1 SYNOPSIS
20
21 package My::Schema;
22 use base qw/DBIx::Class::Schema::Loader/;
23
59cfa251 24 __PACKAGE__->loader_options( debug => 1 );
996be9ee 25
26 1;
27
28=head1 DESCRIPTION
29
30See L<DBIx::Class::Schema::Loader::Base>.
31
32=cut
33
34sub _setup {
35 my $self = shift;
36
37 $self->next::method(@_);
bc1cb85e 38
996be9ee 39 $self->{db_schema} ||= 'public';
996be9ee 40
bc1cb85e 41 if (not defined $self->preserve_case) {
42 $self->preserve_case(0);
43 }
c930f78b 44 elsif ($self->preserve_case) {
45 $self->schema->storage->sql_maker->quote_char('"');
46 $self->schema->storage->sql_maker->name_sep('.');
47 }
bc1cb85e 48}
fbcfebdd 49
996be9ee 50sub _table_uniq_info {
51 my ($self, $table) = @_;
52
fd589700 53 # Use the default support if available
54 return $self->next::method($table)
79fe0081 55 if $DBD::Pg::VERSION >= 1.50;
fd589700 56
996be9ee 57 my @uniqs;
58 my $dbh = $self->schema->storage->dbh;
59
5223f24a 60 # Most of the SQL here is mostly based on
61 # Rose::DB::Object::Metadata::Auto::Pg, after some prodding from
62 # John Siracusa to use his superior SQL code :)
63
64 my $attr_sth = $self->{_cache}->{pg_attr_sth} ||= $dbh->prepare(
65 q{SELECT attname FROM pg_catalog.pg_attribute
66 WHERE attrelid = ? AND attnum = ?}
67 );
68
69 my $uniq_sth = $self->{_cache}->{pg_uniq_sth} ||= $dbh->prepare(
70 q{SELECT x.indrelid, i.relname, x.indkey
71 FROM
72 pg_catalog.pg_index x
73 JOIN pg_catalog.pg_class c ON c.oid = x.indrelid
74 JOIN pg_catalog.pg_class i ON i.oid = x.indexrelid
75 JOIN pg_catalog.pg_constraint con ON con.conname = i.relname
76 LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
77 WHERE
78 x.indisunique = 't' AND
79 c.relkind = 'r' AND
80 i.relkind = 'i' AND
81 con.contype = 'u' AND
82 n.nspname = ? AND
83 c.relname = ?}
84 );
85
86 $uniq_sth->execute($self->db_schema, $table);
87 while(my $row = $uniq_sth->fetchrow_arrayref) {
88 my ($tableid, $indexname, $col_nums) = @$row;
89 $col_nums =~ s/^\s+//;
90 my @col_nums = split(/\s+/, $col_nums);
91 my @col_names;
92
93 foreach (@col_nums) {
94 $attr_sth->execute($tableid, $_);
95 my $name_aref = $attr_sth->fetchrow_arrayref;
96 push(@col_names, $name_aref->[0]) if $name_aref;
996be9ee 97 }
5223f24a 98
99 if(!@col_names) {
8f9d7ce5 100 warn "Failed to parse UNIQUE constraint $indexname on $table";
996be9ee 101 }
102 else {
5223f24a 103 push(@uniqs, [ $indexname => \@col_names ]);
996be9ee 104 }
105 }
106
107 return \@uniqs;
108}
109
fbcfebdd 110sub _table_comment {
111 my ( $self, $table ) = @_;
112 my ($table_comment) = $self->schema->storage->dbh->selectrow_array(
113 q{SELECT obj_description(oid)
114 FROM pg_class
115 WHERE relname=? AND relnamespace=(
116 SELECT oid FROM pg_namespace WHERE nspname=?)
117 }, undef, $table, $self->db_schema
118 );
119 return $table_comment
120}
121
122
123sub _column_comment {
124 my ( $self, $table, $column_number ) = @_;
125 my ($table_oid) = $self->schema->storage->dbh->selectrow_array(
126 q{SELECT oid
127 FROM pg_class
128 WHERE relname=? AND relnamespace=(
129 SELECT oid FROM pg_namespace WHERE nspname=?)
130 }, undef, $table, $self->db_schema
131 );
132 return $self->schema->storage->dbh->selectrow_array('SELECT col_description(?,?)', undef, $table_oid,
133 $column_number );
134}
135
baff904e 136# Make sure data_type's that don't need it don't have a 'size' column_info, and
afb4c5bc 137# set the correct precision for datetime and varbit types.
baff904e 138sub _columns_info_for {
139 my $self = shift;
140 my ($table) = @_;
141
142 my $result = $self->next::method(@_);
143
f80b0ea7 144 while (my ($col, $info) = each %$result) {
145 my $data_type = $info->{data_type};
baff904e 146
147 # these types are fixed size
7640ef4b 148 # XXX should this be a negative match?
baff904e 149 if ($data_type =~
f80b0ea7 150/^(?:bigint|int8|bigserial|serial8|boolean|bool|box|bytea|cidr|circle|date|double precision|float8|inet|integer|int|int4|line|lseg|macaddr|money|path|point|polygon|real|float4|smallint|int2|serial|serial4|text)\z/i) {
151 delete $info->{size};
baff904e 152 }
afb4c5bc 153# for datetime types, check if it has a precision or not
43b982ea 154 elsif ($data_type =~ /^(?:interval|time|timestamp)\b/i) {
f80b0ea7 155 if (lc($data_type) eq 'timestamp without time zone') {
156 $info->{data_type} = 'timestamp';
157 }
8e030521 158 elsif (lc($data_type) eq 'time without time zone') {
159 $info->{data_type} = 'time';
160 }
f80b0ea7 161
baff904e 162 my ($precision) = $self->schema->storage->dbh
163 ->selectrow_array(<<EOF, {}, $table, $col);
164SELECT datetime_precision
165FROM information_schema.columns
166WHERE table_name = ? and column_name = ?
167EOF
168
5f85388e 169 if ($data_type =~ /^time\b/i) {
170 if ((not $precision) || $precision !~ /^\d/) {
f80b0ea7 171 delete $info->{size};
5f85388e 172 }
173 else {
174 my ($integer_datetimes) = $self->schema->storage->dbh
175 ->selectrow_array('show integer_datetimes');
176
177 my $max_precision =
178 $integer_datetimes =~ /^on\z/i ? 6 : 10;
179
180 if ($precision == $max_precision) {
f80b0ea7 181 delete $info->{size};
5f85388e 182 }
183 else {
f80b0ea7 184 $info->{size} = $precision;
5f85388e 185 }
186 }
187 }
188 elsif ((not $precision) || $precision !~ /^\d/ || $precision == 6) {
f80b0ea7 189 delete $info->{size};
baff904e 190 }
191 else {
f80b0ea7 192 $info->{size} = $precision;
baff904e 193 }
194 }
f80b0ea7 195 elsif ($data_type =~ /^(?:bit(?: varying)?|varbit)\z/i) {
196 $info->{data_type} = 'varbit' if $data_type =~ /var/i;
197
afb4c5bc 198 my ($precision) = $self->schema->storage->dbh
199 ->selectrow_array(<<EOF, {}, $table, $col);
200SELECT character_maximum_length
201FROM information_schema.columns
202WHERE table_name = ? and column_name = ?
203EOF
204
f80b0ea7 205 $info->{size} = $precision if $precision;
206
207 $info->{size} = 1 if (not $precision) && lc($data_type) eq 'bit';
afb4c5bc 208 }
f80b0ea7 209 elsif ($data_type =~ /^(?:numeric|decimal)\z/i && (my $size = $info->{size})) {
d4d1a665 210 $size =~ s/\s*//g;
211
212 my ($scale, $precision) = split /,/, $size;
213
f80b0ea7 214 $info->{size} = [ $precision, $scale ];
215 }
216 elsif (lc($data_type) eq 'character varying') {
217 $info->{data_type} = 'varchar';
218
8e030521 219 if (not $info->{size}) {
220 $info->{data_type} = 'text';
221 $info->{original}{data_type} = 'varchar';
222 }
f80b0ea7 223 }
224 elsif (lc($data_type) eq 'character') {
225 $info->{data_type} = 'char';
d4d1a665 226 }
12333562 227 else {
228 my ($typetype) = $self->schema->storage->dbh
229 ->selectrow_array(<<EOF, {}, $data_type);
230SELECT typtype
231FROM pg_catalog.pg_type
232WHERE typname = ?
233EOF
234 if ($typetype eq 'e') {
463c86fb 235 # The following will extract a list of allowed values for the
236 # enum.
237 my $typevalues = $self->schema->storage->dbh
238 ->selectall_arrayref(<<EOF, {}, $info->{data_type});
239SELECT e.enumlabel
240FROM pg_catalog.pg_enum e
241JOIN pg_catalog.pg_type t ON t.oid = e.enumtypid
242WHERE t.typname = ?
243EOF
244
245 $info->{extra}{list} = [ map { $_->[0] } @$typevalues ];
246
247 # Store its original name in extra for SQLT to pick up.
248 $info->{extra}{custom_type_name} = $info->{data_type};
249
12333562 250 $info->{data_type} = 'enum';
463c86fb 251
252 delete $info->{size};
12333562 253 }
254 }
255
df956aad 256# process SERIAL columns
9f333983 257 if (ref($info->{default_value}) eq 'SCALAR' && ${ $info->{default_value} } =~ /\bnextval\(['"]([.\w]+)/i) {
f80b0ea7 258 $info->{is_auto_increment} = 1;
259 $info->{sequence} = $1;
260 delete $info->{default_value};
df956aad 261 }
8e64075f 262
6e566cc4 263# alias now() to current_timestamp for deploying to other DBs
45321eda 264 if ((eval { lc ${ $info->{default_value} } }||'') eq 'now()') {
8a64178e 265 # do not use a ref to a constant, that breaks Data::Dump output
f80b0ea7 266 ${$info->{default_value}} = 'current_timestamp';
701cd3e3 267
268 my $now = 'now()';
269 $info->{original}{default_value} = \$now;
8e64075f 270 }
a8df0345 271 }
272
df956aad 273 return $result;
78b7ccaa 274}
275
996be9ee 276=head1 SEE ALSO
277
278L<DBIx::Class::Schema::Loader>, L<DBIx::Class::Schema::Loader::Base>,
279L<DBIx::Class::Schema::Loader::DBI>
280
be80bba7 281=head1 AUTHOR
282
9cc8e7e1 283See L<DBIx::Class::Schema::Loader/AUTHOR> and L<DBIx::Class::Schema::Loader/CONTRIBUTORS>.
be80bba7 284
285=head1 LICENSE
286
287This library is free software; you can redistribute it and/or modify it under
288the same terms as Perl itself.
289
996be9ee 290=cut
291
2921;