X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FDBIx%2FClass%2FSchema%2FLoader%2FDBI%2FOracle.pm;h=84f801f7e7de8d33b1055067d34e838b576c335e;hb=f671b6308c4f2210255b2eaa12fc47a49621d436;hp=a3fb1eba71b11b46c45b9105354bcaaee139a854;hpb=b511f36e7550cfe8aac546be689c8bd320a83975;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 a3fb1eb..84f801f 100644 --- a/lib/DBIx/Class/Schema/Loader/DBI/Oracle.pm +++ b/lib/DBIx/Class/Schema/Loader/DBI/Oracle.pm @@ -7,9 +7,9 @@ use base qw/ DBIx::Class::Schema::Loader::DBI /; use Carp::Clan qw/^DBIx::Class/; -use Class::C3; +use mro 'c3'; -our $VERSION = '0.07000'; +our $VERSION = '0.07002'; =head1 NAME @@ -71,7 +71,16 @@ sub _tables_list { if $table =~ /\A(\w+)\z/; } - return $self->_filter_tables(\@tables, $opts); + { + # 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/; + }; + + return $self->_filter_tables(\@tables, $opts); + } } sub _table_columns { @@ -137,8 +146,11 @@ sub _columns_info_for { my $dbh = $self->schema->storage->dbh; + local $dbh->{LongReadLen} = 100000; + local $dbh->{LongTruncOk} = 1; + my $sth = $dbh->prepare_cached(q{ -SELECT atc.column_name +SELECT atc.column_name, ut.trigger_body FROM all_triggers ut JOIN all_trigger_cols atc USING (trigger_name) WHERE atc.table_name = ? @@ -148,8 +160,17 @@ AND upper(trigger_type) LIKE '%BEFORE EACH ROW%' AND lower(triggering_event) LIK $sth->execute($self->_uc($table)); - while (my ($col_name) = $sth->fetchrow_array) { - $result->{$self->_lc($col_name)}{is_auto_increment} = 1; + while (my ($col_name, $trigger_body) = $sth->fetchrow_array) { + $col_name = $self->_lc($col_name); + + $result->{$col_name}{is_auto_increment} = 1; + + if (my ($seq_schema, $seq_name) = $trigger_body =~ /(?:\."?(\w+)"?)?"?(\w+)"?\.nextval/i) { + $seq_schema = $self->_lc($seq_schema || $self->db_schema); + $seq_name = $self->_lc($seq_name); + + $result->{$col_name}{sequence} = ($self->qualify_objects ? ($seq_schema . '.') : '') . $seq_name; + } } while (my ($col, $info) = each %$result) {