X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FDBIx%2FClass%2FSchema%2FLoader%2FDBI%2FOracle.pm;h=927f0c452f55cf7ec90b992406d2a6d7117c9e9e;hb=refs%2Fheads%2F0.08;hp=b2e1f5aa8d9b2a14d78c8e53b1b8bd50237dd393;hpb=1c22571bbcdd910b099726e551bdb4d45be6e744;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 b2e1f5a..927f0c4 100644 --- a/lib/DBIx/Class/Schema/Loader/DBI/Oracle.pm +++ b/lib/DBIx/Class/Schema/Loader/DBI/Oracle.pm @@ -9,7 +9,7 @@ use base qw/ use Carp::Clan qw/^DBIx::Class/; use Class::C3; -our $VERSION = '0.07000'; +our $VERSION = '0.08000'; =head1 NAME @@ -41,8 +41,8 @@ sub _setup { $self->preserve_case(0); } elsif ($self->preserve_case) { - $self->schema->storage->quote_char('"'); - $self->schema->storage->name_sep('.'); + $self->schema->storage->sql_maker->quote_char('"'); + $self->schema->storage->sql_maker->name_sep('.'); } } @@ -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 { @@ -81,7 +90,7 @@ sub _table_columns { my $sth = $dbh->column_info(undef, $self->db_schema, $self->_uc($table), '%'); - return [ map lc($_->{COLUMN_NAME}), @{ $sth->fetchall_arrayref({ COLUMN_NAME => 1 }) || [] } ]; + return [ map $self->_lc($_->{COLUMN_NAME}), @{ $sth->fetchall_arrayref({ COLUMN_NAME => 1 }) || [] } ]; } sub _table_uniq_info { @@ -101,7 +110,7 @@ sub _table_uniq_info { $sth->execute($self->_uc($table),$self->{db_schema} ); my %constr_names; while(my $constr = $sth->fetchrow_arrayref) { - my $constr_name = $constr->[0]; + my $constr_name = $self->_lc($constr->[0]); my $constr_col = $self->_lc($constr->[1]); $constr_name =~ s/\Q$self->{_quoter}\E//; $constr_col =~ s/\Q$self->{_quoter}\E//; @@ -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) { @@ -163,9 +184,12 @@ AND upper(trigger_type) LIKE '%BEFORE EACH ROW%' AND lower(triggering_event) LIK $info->{size} = $info->{size} / 2; } elsif (lc($info->{data_type}) eq 'number') { - $info->{data_type} = 'numeric'; + $info->{original}{data_type} = 'number'; + $info->{data_type} = 'numeric'; if (eval { $info->{size}[0] == 38 && $info->{size}[1] == 0 }) { + $info->{original}{size} = $info->{size}; + $info->{data_type} = 'integer'; delete $info->{size}; } @@ -228,11 +252,12 @@ AND upper(trigger_type) LIKE '%BEFORE EACH ROW%' AND lower(triggering_event) LIK $info->{original}{data_type} = 'binary_double'; } - if (eval { lc(${ $info->{default_value} }) eq 'sysdate' }) { - $info->{original}{default_value} = $info->{default_value}; - + if ((eval { lc(${ $info->{default_value} }) }||'') eq 'sysdate') { my $current_timestamp = 'current_timestamp'; $info->{default_value} = \$current_timestamp; + + my $sysdate = 'sysdate'; + $info->{original}{default_value} = \$sysdate; } }