X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FDBIx%2FClass%2FSchema%2FLoader%2FDBI%2FSybase.pm;h=f980c00adb9d125614e7fffda905197291e0cc34;hb=e42ec4ef998118c71f8bd66e765f597a6f74dd39;hp=838db269e9e45b444ce83f1ea8f2bc6c65539ba4;hpb=6ecee5848ca2824f1b8263c5e1e4fff032537085;p=dbsrgits%2FDBIx-Class-Schema-Loader.git diff --git a/lib/DBIx/Class/Schema/Loader/DBI/Sybase.pm b/lib/DBIx/Class/Schema/Loader/DBI/Sybase.pm index 838db26..f980c00 100644 --- a/lib/DBIx/Class/Schema/Loader/DBI/Sybase.pm +++ b/lib/DBIx/Class/Schema/Loader/DBI/Sybase.pm @@ -6,7 +6,7 @@ use base 'DBIx::Class::Schema::Loader::DBI::Sybase::Common'; use Carp::Clan qw/^DBIx::Class/; use Class::C3; -our $VERSION = '0.04999_14'; +our $VERSION = '0.05003'; =head1 NAME @@ -251,7 +251,11 @@ WHERE o.name = @{[ $dbh->quote($table) ]} AND o.type = 'U' my $info = $sth->fetchall_hashref('name'); while (my ($col, $res) = each %$result) { - $res->{data_type} = $info->{$col}{type}; + my $data_type = $res->{data_type} = $info->{$col}{type}; + + if ($data_type && $data_type =~ /^timestamp\z/i) { + $res->{inflate_datetime} = 0; + } if (my $default = $info->{$col}{deflt}) { if ($default =~ /^AS \s+ (\S+)/ix) { @@ -259,12 +263,13 @@ WHERE o.name = @{[ $dbh->quote($table) ]} AND o.type = 'U' $res->{default_value} = \$function; } elsif ($default =~ /^DEFAULT \s+ (\S+)/ix) { - my ($constant_default) = $1 =~ /^['"\[\]]?(.*?)['"\[\]]\z/; + my ($constant_default) = $1 =~ /^['"\[\]]?(.*?)['"\[\]]?\z/; $res->{default_value} = $constant_default; } } -# XXX we need to handle "binary precision" for FLOAT(X) but I don't know what it means +# XXX we need to handle "binary precision" for FLOAT(X) +# (see: http://msdn.microsoft.com/en-us/library/aa258876(SQL.80).aspx ) if (my $data_type = $res->{data_type}) { if ($data_type =~ /^(?:text|unitext|image|bigint|int|integer|smallint|tinyint|real|double|double precision|float|date|time|datetime|smalldatetime|money|smallmoney|timestamp|bit)\z/i) { delete $res->{size};