X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FDBIx%2FClass%2FStorage%2FDBI%2FOracle%2FGeneric.pm;h=5f54bd6bcf417d71eebc0cca4db9fe993e196d01;hb=2e4dd2413cf6add731083c60f493cc7374b3fcf8;hp=e6bf5ae1fe85862eb959935aa3f02c6b9918ab1e;hpb=a0da03096cd65314cb337d6f4254cd1a0ce4ed7b;p=dbsrgits%2FDBIx-Class.git diff --git a/lib/DBIx/Class/Storage/DBI/Oracle/Generic.pm b/lib/DBIx/Class/Storage/DBI/Oracle/Generic.pm index e6bf5ae..5f54bd6 100644 --- a/lib/DBIx/Class/Storage/DBI/Oracle/Generic.pm +++ b/lib/DBIx/Class/Storage/DBI/Oracle/Generic.pm @@ -417,24 +417,6 @@ sub with_deferred_fk_checks { after => sub { $txn_scope_guard->commit }); } -sub _select_args { - my ($self, $ident, $select, $where, $attrs) = @_; - - my $connect_by_args = {}; - if ( $attrs->{connect_by} || $attrs->{start_with} || $attrs->{order_siblings_by} || $attrs->{nocycle} ) { - $connect_by_args = { - connect_by => $attrs->{connect_by}, - nocycle => $attrs->{nocycle}, - start_with => $attrs->{start_with}, - order_siblings_by => $attrs->{order_siblings_by}, - } - } - - my @rv = $self->next::method($ident, $select, $where, $attrs); - - return (@rv, $connect_by_args); -} - =head1 ATTRIBUTES Following additional attributes can be used in resultsets.