release 0.07020
[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;
383bd2a8 5use base 'DBIx::Class::Schema::Loader::DBI::Component::QuotedDefault';
942bd5e0 6use mro 'c3';
996be9ee 7
dec80986 8our $VERSION = '0.07020';
32f784fc 9
996be9ee 10=head1 NAME
11
8f9d7ce5 12DBIx::Class::Schema::Loader::DBI::Pg - DBIx::Class::Schema::Loader::DBI
13PostgreSQL Implementation.
996be9ee 14
996be9ee 15=head1 DESCRIPTION
16
c4a69b87 17See L<DBIx::Class::Schema::Loader> and L<DBIx::Class::Schema::Loader::Base>.
996be9ee 18
19=cut
20
21sub _setup {
22 my $self = shift;
23
24 $self->next::method(@_);
bc1cb85e 25
c4a69b87 26 $self->{db_schema} ||= ['public'];
996be9ee 27
bc1cb85e 28 if (not defined $self->preserve_case) {
29 $self->preserve_case(0);
30 }
c930f78b 31 elsif ($self->preserve_case) {
32 $self->schema->storage->sql_maker->quote_char('"');
33 $self->schema->storage->sql_maker->name_sep('.');
34 }
bc1cb85e 35}
fbcfebdd 36
c4a69b87 37sub _system_schemas {
38 my $self = shift;
12b86f07 39
c4a69b87 40 return ($self->next::method(@_), 'pg_catalog');
12b86f07 41}
42
996be9ee 43sub _table_uniq_info {
44 my ($self, $table) = @_;
45
fd589700 46 # Use the default support if available
47 return $self->next::method($table)
79fe0081 48 if $DBD::Pg::VERSION >= 1.50;
fd589700 49
996be9ee 50 my @uniqs;
996be9ee 51
5223f24a 52 # Most of the SQL here is mostly based on
53 # Rose::DB::Object::Metadata::Auto::Pg, after some prodding from
54 # John Siracusa to use his superior SQL code :)
55
c4a69b87 56 my $attr_sth = $self->{_cache}->{pg_attr_sth} ||= $self->dbh->prepare(
5223f24a 57 q{SELECT attname FROM pg_catalog.pg_attribute
58 WHERE attrelid = ? AND attnum = ?}
59 );
60
c4a69b87 61 my $uniq_sth = $self->{_cache}->{pg_uniq_sth} ||= $self->dbh->prepare(
5223f24a 62 q{SELECT x.indrelid, i.relname, x.indkey
63 FROM
64 pg_catalog.pg_index x
65 JOIN pg_catalog.pg_class c ON c.oid = x.indrelid
66 JOIN pg_catalog.pg_class i ON i.oid = x.indexrelid
67 JOIN pg_catalog.pg_constraint con ON con.conname = i.relname
68 LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
69 WHERE
70 x.indisunique = 't' AND
71 c.relkind = 'r' AND
72 i.relkind = 'i' AND
73 con.contype = 'u' AND
74 n.nspname = ? AND
75 c.relname = ?}
76 );
77
116431d6 78 $uniq_sth->execute($table->schema, $table->name);
5223f24a 79 while(my $row = $uniq_sth->fetchrow_arrayref) {
80 my ($tableid, $indexname, $col_nums) = @$row;
81 $col_nums =~ s/^\s+//;
82 my @col_nums = split(/\s+/, $col_nums);
83 my @col_names;
84
85 foreach (@col_nums) {
86 $attr_sth->execute($tableid, $_);
87 my $name_aref = $attr_sth->fetchrow_arrayref;
116431d6 88 push(@col_names, $self->_lc($name_aref->[0])) if $name_aref;
996be9ee 89 }
5223f24a 90
91 if(!@col_names) {
8f9d7ce5 92 warn "Failed to parse UNIQUE constraint $indexname on $table";
996be9ee 93 }
94 else {
5223f24a 95 push(@uniqs, [ $indexname => \@col_names ]);
996be9ee 96 }
97 }
98
99 return \@uniqs;
100}
101
fbcfebdd 102sub _table_comment {
c4a69b87 103 my $self = shift;
104 my ($table) = @_;
105
106 my $table_comment = $self->next::method(@_);
107
108 return $table_comment if $table_comment;
109
110 ($table_comment) = $self->dbh->selectrow_array(<<'EOF', {}, $table->name, $table->schema);
111SELECT obj_description(oid)
112FROM pg_class
113WHERE relname=? AND relnamespace=(SELECT oid FROM pg_namespace WHERE nspname=?)
114EOF
115
fbcfebdd 116 return $table_comment
117}
118
119
120sub _column_comment {
c4a69b87 121 my $self = shift;
122 my ($table, $column_number, $column_name) = @_;
123
124 my $column_comment = $self->next::method(@_);
125
126 return $column_comment if $column_comment;
127
128 my ($table_oid) = $self->dbh->selectrow_array(<<'EOF', {}, $table->name, $table->schema);
129SELECT oid
130FROM pg_class
131WHERE relname=? AND relnamespace=(SELECT oid FROM pg_namespace WHERE nspname=?)
132EOF
133
134 return $self->dbh->selectrow_array('SELECT col_description(?,?)', {}, $table_oid, $column_number);
fbcfebdd 135}
136
baff904e 137# Make sure data_type's that don't need it don't have a 'size' column_info, and
afb4c5bc 138# set the correct precision for datetime and varbit types.
baff904e 139sub _columns_info_for {
140 my $self = shift;
141 my ($table) = @_;
142
143 my $result = $self->next::method(@_);
144
f80b0ea7 145 while (my ($col, $info) = each %$result) {
146 my $data_type = $info->{data_type};
baff904e 147
148 # these types are fixed size
7640ef4b 149 # XXX should this be a negative match?
baff904e 150 if ($data_type =~
96336646 151/^(?:bigint|int8|bigserial|serial8|bool(?:ean)?|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) {
f80b0ea7 152 delete $info->{size};
baff904e 153 }
afb4c5bc 154# for datetime types, check if it has a precision or not
43b982ea 155 elsif ($data_type =~ /^(?:interval|time|timestamp)\b/i) {
f80b0ea7 156 if (lc($data_type) eq 'timestamp without time zone') {
157 $info->{data_type} = 'timestamp';
158 }
8e030521 159 elsif (lc($data_type) eq 'time without time zone') {
160 $info->{data_type} = 'time';
161 }
f80b0ea7 162
baff904e 163 my ($precision) = $self->schema->storage->dbh
116431d6 164 ->selectrow_array(<<EOF, {}, $table->name, $col);
baff904e 165SELECT datetime_precision
166FROM information_schema.columns
167WHERE table_name = ? and column_name = ?
168EOF
169
5f85388e 170 if ($data_type =~ /^time\b/i) {
171 if ((not $precision) || $precision !~ /^\d/) {
f80b0ea7 172 delete $info->{size};
5f85388e 173 }
174 else {
c4a69b87 175 my ($integer_datetimes) = $self->dbh
5f85388e 176 ->selectrow_array('show integer_datetimes');
177
178 my $max_precision =
179 $integer_datetimes =~ /^on\z/i ? 6 : 10;
180
181 if ($precision == $max_precision) {
f80b0ea7 182 delete $info->{size};
5f85388e 183 }
184 else {
f80b0ea7 185 $info->{size} = $precision;
5f85388e 186 }
187 }
188 }
189 elsif ((not $precision) || $precision !~ /^\d/ || $precision == 6) {
f80b0ea7 190 delete $info->{size};
baff904e 191 }
192 else {
f80b0ea7 193 $info->{size} = $precision;
baff904e 194 }
195 }
f80b0ea7 196 elsif ($data_type =~ /^(?:bit(?: varying)?|varbit)\z/i) {
197 $info->{data_type} = 'varbit' if $data_type =~ /var/i;
198
116431d6 199 my ($precision) = $self->dbh->selectrow_array(<<EOF, {}, $table->name, $col);
afb4c5bc 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
c4a69b87 234 if ($typetype && $typetype eq 'e') {
463c86fb 235 # The following will extract a list of allowed values for the
236 # enum.
c4a69b87 237 my $typevalues = $self->dbh
463c86fb 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
12b86f07 257 if (ref($info->{default_value}) eq 'SCALAR'
258 && ${ $info->{default_value} } =~ /\bnextval\('([^:]+)'/i) {
f80b0ea7 259 $info->{is_auto_increment} = 1;
260 $info->{sequence} = $1;
261 delete $info->{default_value};
df956aad 262 }
8e64075f 263
6e566cc4 264# alias now() to current_timestamp for deploying to other DBs
45321eda 265 if ((eval { lc ${ $info->{default_value} } }||'') eq 'now()') {
8a64178e 266 # do not use a ref to a constant, that breaks Data::Dump output
f80b0ea7 267 ${$info->{default_value}} = 'current_timestamp';
701cd3e3 268
269 my $now = 'now()';
270 $info->{original}{default_value} = \$now;
8e64075f 271 }
96336646 272
273# detect 0/1 for booleans and rewrite
274 if ($data_type =~ /^bool/i && exists $info->{default_value}) {
275 if ($info->{default_value} eq '0') {
276 my $false = 'false';
277 $info->{default_value} = \$false;
278 }
279 elsif ($info->{default_value} eq '1') {
280 my $true = 'true';
281 $info->{default_value} = \$true;
282 }
283 }
a8df0345 284 }
285
df956aad 286 return $result;
78b7ccaa 287}
288
996be9ee 289=head1 SEE ALSO
290
291L<DBIx::Class::Schema::Loader>, L<DBIx::Class::Schema::Loader::Base>,
292L<DBIx::Class::Schema::Loader::DBI>
293
be80bba7 294=head1 AUTHOR
295
9cc8e7e1 296See L<DBIx::Class::Schema::Loader/AUTHOR> and L<DBIx::Class::Schema::Loader/CONTRIBUTORS>.
be80bba7 297
298=head1 LICENSE
299
300This library is free software; you can redistribute it and/or modify it under
301the same terms as Perl itself.
302
996be9ee 303=cut
304
3051;