fix defaults broken by last Pg defaults fix commit
[dbsrgits/DBIx-Class-Schema-Loader.git] / lib / DBIx / Class / Schema / Loader / DBI / Component / QuotedDefault.pm
CommitLineData
6b0e47fc 1package DBIx::Class::Schema::Loader::DBI::Component::QuotedDefault;
2
3use strict;
4use warnings;
942bd5e0 5use mro 'c3';
6b0e47fc 6
4295c4b4 7our $VERSION = '0.07010';
6b0e47fc 8
9=head1 NAME
10
dc744c9d 11DBIx::Class::Schema::Loader::DBI::Component::QuotedDefault -- Loader::DBI
12Component to parse quoted default constants and functions
6b0e47fc 13
14=head1 DESCRIPTION
15
16If C<COLUMN_DEF> from L<DBI/column_info> returns character constants quoted,
17then we need to remove the quotes. This also allows distinguishing between
18default functions without information schema introspection.
19
20=cut
21
22sub _columns_info_for {
23 my $self = shift;
24 my ($table) = @_;
25
26 my $result = $self->next::method(@_);
27
28 while (my ($col, $info) = each %$result) {
29 if (my $def = $info->{default_value}) {
30 $def =~ s/^\s+//;
31 $def =~ s/\s+\z//;
32
41968729 33# remove Pg typecasts (e.g. 'foo'::character varying) too
34 if ($def =~ /^["'](.*?)['"](?:::[\w\s]+)?\z/) {
6b0e47fc 35 $info->{default_value} = $1;
36 }
96336646 37# Some DBs (eg. Pg) put parenthesis around negative number defaults
38 elsif ($def =~ /^\((-?\d.*?)\)(?:::[\w\s]+)?\z/) {
39 $info->{default_value} = $1;
40 }
c99b3e2b 41 elsif ($def =~ /^(-?\d.*?)(?:::[\w\s]+)?\z/) {
96336646 42 $info->{default_value} = $1;
43 }
44 elsif ($def =~ /^NULL:?/i) {
45 $info->{default_value} = \'null';
46 }
6b0e47fc 47 else {
96336646 48 $info->{default_value} = \$def;
6b0e47fc 49 }
50 }
51 }
52
53 return $result;
54}
55
561;
57
58=head1 SEE ALSO
59
60L<DBIx::Class::Schema::Loader>, L<DBIx::Class::Schema::Loader::Base>,
61L<DBIx::Class::Schema::Loader::DBI>
62
63=head1 AUTHOR
64
65See L<DBIx::Class::Schema::Loader/AUTHOR> and L<DBIx::Class::Schema::Loader/CONTRIBUTORS>.
66
67=head1 LICENSE
68
69This library is free software; you can redistribute it and/or modify it under
70the same terms as Perl itself.
71
72=cut