Shut up uninitialized warnings from ->table_info on DB2
[dbsrgits/DBIx-Class-Schema-Loader.git] / lib / DBIx / Class / Schema / Loader / DBI / DB2.pm
CommitLineData
996be9ee 1package DBIx::Class::Schema::Loader::DBI::DB2;
2
3use strict;
4use warnings;
41968729 5use base qw/
6 DBIx::Class::Schema::Loader::DBI::Component::QuotedDefault
7 DBIx::Class::Schema::Loader::DBI
8/;
942bd5e0 9use mro 'c3';
996be9ee 10
c4a69b87 11use List::MoreUtils 'any';
12use namespace::clean;
13
14use DBIx::Class::Schema::Loader::Table ();
15
c52f11c9 16our $VERSION = '0.07042';
32f784fc 17
996be9ee 18=head1 NAME
19
20DBIx::Class::Schema::Loader::DBI::DB2 - DBIx::Class::Schema::Loader::DBI DB2 Implementation.
21
996be9ee 22=head1 DESCRIPTION
23
c4a69b87 24See L<DBIx::Class::Schema::Loader> and L<DBIx::Class::Schema::Loader::Base>.
996be9ee 25
26=cut
27
c4a69b87 28sub _system_schemas {
29 my $self = shift;
30
31 return ($self->next::method(@_), qw/
32 SYSCAT SYSIBM SYSIBMADM SYSPUBLIC SYSSTAT SYSTOOLS
33 /);
34}
35
7a930e63 36sub _setup {
37 my $self = shift;
38
39 $self->next::method(@_);
40
c4a69b87 41 my $ns = $self->name_sep;
42
43 $self->db_schema([ $self->dbh->selectrow_array(<<"EOF", {}) ]) unless $self->db_schema;
44SELECT CURRENT_SCHEMA FROM sysibm${ns}sysdummy1
45EOF
bc1cb85e 46
47 if (not defined $self->preserve_case) {
48 $self->preserve_case(0);
49 }
b511f36e 50 elsif ($self->preserve_case) {
51 $self->schema->storage->sql_maker->quote_char('"');
c4a69b87 52 $self->schema->storage->sql_maker->name_sep($ns);
b511f36e 53 }
7a930e63 54}
55
996be9ee 56sub _table_uniq_info {
57 my ($self, $table) = @_;
58
59 my @uniqs;
60
c4a69b87 61 my $sth = $self->{_cache}->{db2_uniq} ||= $self->dbh->prepare(<<'EOF');
62SELECT kcu.colname, kcu.constname, kcu.colseq
63FROM syscat.tabconst as tc
64JOIN syscat.keycoluse as kcu
65 ON tc.constname = kcu.constname
66 AND tc.tabschema = kcu.tabschema
67 AND tc.tabname = kcu.tabname
68WHERE tc.tabschema = ? and tc.tabname = ? and tc.type = 'U'
69EOF
5223f24a 70
c4a69b87 71 $sth->execute($table->schema, $table->name);
996be9ee 72
73 my %keydata;
74 while(my $row = $sth->fetchrow_arrayref) {
75 my ($col, $constname, $seq) = @$row;
b511f36e 76 push(@{$keydata{$constname}}, [ $seq, $self->_lc($col) ]);
996be9ee 77 }
6c4f5a4a 78 foreach my $keyname (sort keys %keydata) {
996be9ee 79 my @ordered_cols = map { $_->[1] } sort { $a->[0] <=> $b->[0] }
80 @{$keydata{$keyname}};
81 push(@uniqs, [ $keyname => \@ordered_cols ]);
82 }
4421d6a3 83
996be9ee 84 $sth->finish;
075473b9 85
996be9ee 86 return \@uniqs;
87}
88
a168c1c4 89sub _table_fk_info {
90 my ($self, $table) = @_;
91
c4a69b87 92 my $sth = $self->{_cache}->{db2_fk} ||= $self->dbh->prepare(<<'EOF');
93SELECT tc.constname, sr.reftabschema, sr.reftabname,
075473b9 94 kcu.colname, rkcu.colname, kcu.colseq,
95 sr.deleterule, sr.updaterule
c4a69b87 96FROM syscat.tabconst tc
97JOIN syscat.keycoluse kcu
98 ON tc.constname = kcu.constname
99 AND tc.tabschema = kcu.tabschema
100 AND tc.tabname = kcu.tabname
101JOIN syscat.references sr
102 ON tc.constname = sr.constname
103 AND tc.tabschema = sr.tabschema
104 AND tc.tabname = sr.tabname
105JOIN syscat.keycoluse rkcu
106 ON sr.refkeyname = rkcu.constname
107 AND kcu.colseq = rkcu.colseq
108WHERE tc.tabschema = ?
109 AND tc.tabname = ?
110 AND tc.type = 'F';
111EOF
112 $sth->execute($table->schema, $table->name);
113
114 my %rels;
115
075473b9 116 my %rules = (
117 A => 'NO ACTION',
118 C => 'CASCADE',
119 N => 'SET NULL',
120 R => 'RESTRICT',
121 );
122
c4a69b87 123 COLS: while (my @row = $sth->fetchrow_array) {
124 my ($fk, $remote_schema, $remote_table, $local_col, $remote_col,
075473b9 125 $colseq, $delete_rule, $update_rule) = @row;
c4a69b87 126
127 if (not exists $rels{$fk}) {
128 if ($self->db_schema && $self->db_schema->[0] ne '%'
129 && (not any { $_ eq $remote_schema } @{ $self->db_schema })) {
130
131 next COLS;
132 }
a168c1c4 133
c4a69b87 134 $rels{$fk}{remote_table} = DBIx::Class::Schema::Loader::Table->new(
135 loader => $self,
136 name => $remote_table,
137 schema => $remote_schema,
138 );
139 }
140
141 $rels{$fk}{local_columns}[$colseq-1] = $self->_lc($local_col);
142 $rels{$fk}{remote_columns}[$colseq-1] = $self->_lc($remote_col);
075473b9 143
144 $rels{$fk}{attrs} ||= {
145 on_delete => $rules{$delete_rule},
146 on_update => $rules{$update_rule},
147 is_deferrable => 1, # DB2 has no deferrable constraints
148 };
a168c1c4 149 }
150
c4a69b87 151 return [ values %rels ];
152}
153
154
e80ea87b 155# DBD::DB2 doesn't follow the DBI API for ->tables (pre 1.85), but since its
156# backwards compatible we don't change it.
157# DBD::DB2 1.85 and beyond default TABLE_NAME to '', previously defaulted to
158# '%'. so we supply it.
c4a69b87 159sub _dbh_tables {
160 my ($self, $schema) = @_;
161
e80ea87b 162 return $self->dbh->tables($schema ? { TABLE_SCHEM => $schema, TABLE_NAME => '%' } : undef);
a168c1c4 163}
164
d9a16c64 165sub _dbh_table_info {
166 my $self = shift;
167
168 local $^W = 0; # shut up undef warning from DBD::DB2
169
170 $self->next::method(@_);
171}
172
a168c1c4 173sub _columns_info_for {
8a64178e 174 my $self = shift;
175 my ($table) = @_;
a168c1c4 176
c4a69b87 177 my $result = $self->next::method(@_);
8a64178e 178
179 while (my ($col, $info) = each %$result) {
180 # check for identities
c4a69b87 181 my $sth = $self->dbh->prepare_cached(
8a64178e 182 q{
183 SELECT COUNT(*)
184 FROM syscat.columns
185 WHERE tabschema = ? AND tabname = ? AND colname = ?
186 AND identity = 'Y' AND generated != ''
187 },
188 {}, 1);
c4a69b87 189 $sth->execute($table->schema, $table->name, $self->_uc($col));
8a64178e 190 if ($sth->fetchrow_array) {
191 $info->{is_auto_increment} = 1;
192 }
193
7640ef4b 194 my $data_type = $info->{data_type};
195
196 if ($data_type !~ /^(?:(?:var)?(?:char|graphic)|decimal)\z/i) {
8a64178e 197 delete $info->{size};
7640ef4b 198 }
199
200 if ($data_type eq 'double') {
201 $info->{data_type} = 'double precision';
202 }
203 elsif ($data_type eq 'decimal') {
204 no warnings 'uninitialized';
205
206 $info->{data_type} = 'numeric';
207
208 my @size = @{ $info->{size} || [] };
209
210 if ($size[0] == 5 && $size[1] == 0) {
211 delete $info->{size};
212 }
213 }
214 elsif ($data_type =~ /^(?:((?:var)?char) \(\) for bit data|(long varchar) for bit data)\z/i) {
215 my $base_type = lc($1 || $2);
216
217 (my $original_type = $data_type) =~ s/[()]+ //;
218
219 $info->{original}{data_type} = $original_type;
220
221 if ($base_type eq 'long varchar') {
222 $info->{data_type} = 'blob';
223 }
224 else {
225 if ($base_type eq 'char') {
226 $info->{data_type} = 'binary';
227 }
228 elsif ($base_type eq 'varchar') {
229 $info->{data_type} = 'varbinary';
230 }
231
c4a69b87 232 my ($size) = $self->dbh->selectrow_array(<<'EOF', {}, $table->schema, $table->name, $self->_uc($col));
7640ef4b 233SELECT length
234FROM syscat.columns
235WHERE tabschema = ? AND tabname = ? AND colname = ?
236EOF
237
238 $info->{size} = $size if $size;
239 }
240 }
241
242 if ((eval { lc ${ $info->{default_value} } }||'') =~ /^current (date|time(?:stamp)?)\z/i) {
243 my $type = lc($1);
244
245 ${ $info->{default_value} } = 'current_timestamp';
701cd3e3 246
7640ef4b 247 my $orig_deflt = "current $type";
701cd3e3 248 $info->{original}{default_value} = \$orig_deflt;
8a64178e 249 }
772cfe65 250 }
251
8a64178e 252 return $result;
772cfe65 253}
254
996be9ee 255=head1 SEE ALSO
256
257L<DBIx::Class::Schema::Loader>, L<DBIx::Class::Schema::Loader::Base>,
258L<DBIx::Class::Schema::Loader::DBI>
259
be80bba7 260=head1 AUTHOR
261
9cc8e7e1 262See L<DBIx::Class::Schema::Loader/AUTHOR> and L<DBIx::Class::Schema::Loader/CONTRIBUTORS>.
be80bba7 263
264=head1 LICENSE
265
266This library is free software; you can redistribute it and/or modify it under
267the same terms as Perl itself.
268
996be9ee 269=cut
270
2711;
8a64178e 272# vim:et sts=4 sw=4 tw=0: