X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FDBIx%2FClass%2FSchema%2FLoader%2FDBI%2FOracle.pm;h=c723af2fe7c03db944f1c6dfdde9203900921985;hb=802a117545a5bd1a5d20152835a3aa7fb2e7b39f;hp=acb9fa258f85a5409cbf38ed26fa9eb977c5dd3b;hpb=e505923e527229410a92ac493250f1a7acc6f25c;p=dbsrgits%2FDBIx-Class-Schema-Loader.git diff --git a/lib/DBIx/Class/Schema/Loader/DBI/Oracle.pm b/lib/DBIx/Class/Schema/Loader/DBI/Oracle.pm index acb9fa2..c723af2 100644 --- a/lib/DBIx/Class/Schema/Loader/DBI/Oracle.pm +++ b/lib/DBIx/Class/Schema/Loader/DBI/Oracle.pm @@ -5,9 +5,10 @@ use warnings; use base 'DBIx::Class::Schema::Loader::DBI::Component::QuotedDefault'; use mro 'c3'; use Try::Tiny; +use DBIx::Class::Schema::Loader::Utils qw/sigwarn_silencer/; use namespace::clean; -our $VERSION = '0.07031'; +our $VERSION = '0.07041'; =head1 NAME @@ -69,11 +70,9 @@ sub _filter_tables { my $self = shift; # silence a warning from older DBD::Oracles in tests - my $warn_handler = $SIG{__WARN__} || sub { warn @_ }; - local $SIG{__WARN__} = sub { - $warn_handler->(@_) - unless $_[0] =~ /^Field \d+ has an Oracle type \(\d+\) which is not explicitly supported/; - }; + local $SIG{__WARN__} = sigwarn_silencer( + qr/^Field \d+ has an Oracle type \(\d+\) which is not explicitly supported/ + ); return $self->next::method(@_); } @@ -127,8 +126,7 @@ EOF push @{$constr_names{$constr_name}}, $constr_col; } - my @uniqs = map { [ $_ => $constr_names{$_} ] } keys %constr_names; - return \@uniqs; + return [ map { [ $_ => $constr_names{$_} ] } sort keys %constr_names ]; } sub _table_comment { @@ -186,7 +184,7 @@ EOF $sth->execute($table->name, $table->schema); while (my ($trigger_body) = $sth->fetchrow_array) { - if (my ($seq_schema, $seq_name) = $trigger_body =~ /(?:\."?(\w+)"?)?"?(\w+)"?\.nextval/i) { + if (my ($seq_schema, $seq_name) = $trigger_body =~ /(?:"?(\w+)"?\.)?"?(\w+)"?\.nextval/i) { if (my ($col_name) = $trigger_body =~ /:new\.(\w+)/i) { $col_name = $self->_lc($col_name); @@ -200,6 +198,9 @@ EOF } } + # Old DBD::Oracle report the size in (UTF-16) bytes, not characters + my $nchar_size_factor = $DBD::Oracle::VERSION >= 1.52 ? 1 : 2; + while (my ($col, $info) = each %$result) { no warnings 'uninitialized'; @@ -230,7 +231,7 @@ EOF $info->{size} = $info->{size}[0] / 8; } else { - $info->{size} = $info->{size} / 2; + $info->{size} = $info->{size} / $nchar_size_factor; } } elsif ($info->{data_type} =~ /^(?:var)?char2?\z/i) {