X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FDBIx%2FClass%2FSQLMaker%2FOracleJoins.pm;h=a9a92679b66fd9bae7c5bbb10250919e20a7d25f;hb=70c288086248e5a4008490df22a56632341f2473;hp=2d3ae299676c1fb6ef2c8ea50d45904ab3c894a9;hpb=a1249d49dffc7703374d3ea8aa3637609f21843e;p=dbsrgits%2FDBIx-Class.git diff --git a/lib/DBIx/Class/SQLMaker/OracleJoins.pm b/lib/DBIx/Class/SQLMaker/OracleJoins.pm index 2d3ae29..a9a9267 100644 --- a/lib/DBIx/Class/SQLMaker/OracleJoins.pm +++ b/lib/DBIx/Class/SQLMaker/OracleJoins.pm @@ -2,8 +2,6 @@ package # Hide from PAUSE DBIx::Class::SQLMaker::OracleJoins; use base qw( DBIx::Class::SQLMaker::Oracle ); -use Carp::Clan qw/^DBIx::Class|^SQL::Abstract/; -use namespace::clean; sub select { my ($self, $table, $fields, $where, $rs_attrs, @rest) = @_; @@ -69,7 +67,7 @@ sub _recurse_oracle_joins { #TODO: Support full outer joins -- this would happen much earlier in #the sequence since oracle 8's full outer join syntax is best #described as INSANE. - croak "Can't handle full outer joins in Oracle 8 yet!\n" + $self->throw_exception("Can't handle full outer joins in Oracle 8 yet!\n") if $to_jt->{-join_type} =~ /full/i; $left_join = q{(+)} if $to_jt->{-join_type} =~ /left/i