X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FDBIx%2FClass%2FSchema%2FLoader%2FDBI%2Fmysql.pm;h=cb83e7a16ea3ef2d105357b2af910336df3e6f54;hb=e00d61acf4f772083500a04783a8bce56dc322bf;hp=8489e301832c98ccc6c6a383b5c350f75a8fc37c;hpb=c0767caf51045926284f203a7d59890db994aa76;p=dbsrgits%2FDBIx-Class-Schema-Loader.git diff --git a/lib/DBIx/Class/Schema/Loader/DBI/mysql.pm b/lib/DBIx/Class/Schema/Loader/DBI/mysql.pm index 8489e30..cb83e7a 100644 --- a/lib/DBIx/Class/Schema/Loader/DBI/mysql.pm +++ b/lib/DBIx/Class/Schema/Loader/DBI/mysql.pm @@ -22,6 +22,9 @@ See L and L. sub _setup { my $self = shift; + $self->schema->storage->sql_maker->quote_char("`"); + $self->schema->storage->sql_maker->name_sep("."); + $self->next::method(@_); if (not defined $self->preserve_case) { @@ -130,14 +133,15 @@ sub _columns_info_for { my $dbh = $self->schema->storage->dbh; while (my ($col, $info) = each %$result) { - delete $info->{size} if $info->{data_type} !~ /^(?: (?:var)?(?:char(?:acter)?|binary) | bit | year)\z/ix; - if ($info->{data_type} eq 'int') { $info->{data_type} = 'integer'; } elsif ($info->{data_type} eq 'double') { $info->{data_type} = 'double precision'; } + my $data_type = $info->{data_type}; + + delete $info->{size} if $data_type !~ /^(?: (?:var)?(?:char(?:acter)?|binary) | bit | year)\z/ix; # information_schema is available in 5.0+ my ($precision, $scale, $column_type, $default) = eval { $dbh->selectrow_array(<<'EOF', {}, $table, $col) }; @@ -145,14 +149,14 @@ SELECT numeric_precision, numeric_scale, column_type, column_default FROM information_schema.columns WHERE table_name = ? AND column_name = ? EOF - my $has_information_schema = not defined $@; + my $has_information_schema = not $@; $column_type = '' if not defined $column_type; - if ($info->{data_type} eq 'bit' && (not exists $info->{size})) { + if ($data_type eq 'bit' && (not exists $info->{size})) { $info->{size} = $precision if defined $precision; } - elsif ($info->{data_type} =~ /^(?:float|double precision|decimal)\z/i) { + elsif ($data_type =~ /^(?:float|double precision|decimal)\z/i) { if (defined $precision && defined $scale) { if ($precision == 10 && $scale == 0) { delete $info->{size}; @@ -162,7 +166,7 @@ EOF } } } - elsif ($info->{data_type} eq 'year') { + elsif ($data_type eq 'year') { if ($column_type =~ /\(2\)/) { $info->{size} = 2; } @@ -170,11 +174,22 @@ EOF delete $info->{size}; } } - elsif ($info->{data_type} =~ /^(?:date(?:time)?|timestamp)\z/) { + elsif ($data_type =~ /^(?:date(?:time)?|timestamp)\z/) { if (not (defined $self->datetime_undef_if_invalid && $self->datetime_undef_if_invalid == 0)) { $info->{datetime_undef_if_invalid} = 1; } } + elsif ($data_type =~ /^(?:enum|set)\z/ && $has_information_schema + && $column_type =~ /^(?:enum|set)\(/) { + + delete $info->{extra}{list}; + + while ($column_type =~ /'((?:[^']* (?:''|\\')* [^']*)* [^\\'])',?/xg) { + my $el = $1; + $el =~ s/''/'/g; + push @{ $info->{extra}{list} }, $el; + } + } # Sometimes apparently there's a bug where default_value gets set to '' # for things that don't actually have or support that default (like ints.) @@ -185,7 +200,7 @@ EOF } } else { # just check if it's a char/text type, otherwise remove - delete $info->{default_value} unless $info->{data_type} =~ /char|text/i; + delete $info->{default_value} unless $data_type =~ /char|text/i; } } }