Skip to content

Commit

Permalink
fixed order of rows difference between first and subsequent pages for…
Browse files Browse the repository at this point in the history
… Oracle
  • Loading branch information
abraxxa authored and ribasushi committed Jun 7, 2011
1 parent 8d2da21 commit 6a6394f
Show file tree
Hide file tree
Showing 5 changed files with 219 additions and 67 deletions.
2 changes: 2 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ Revision history for DBIx::Class
- Fix issue where the query was becoming overly mangled when trying
to use pagination with a query that has a sub-select in the WHERE
clause
- Fix possible incorrect pagination on Oracle, when a resultset
is not ordered by a unique column
- Revert "Fix incorrect signature of the default sqlt_deploy_hook"
from 0.08191 - documentation was in fact incorrect, not the code
- Fix Sybase ASE IC::DateTime support (::Storage going out of sync
Expand Down
96 changes: 86 additions & 10 deletions lib/DBIx/Class/SQLMaker/LimitDialects.pm
Original file line number Diff line number Diff line change
Expand Up @@ -214,14 +214,31 @@ sub _FirstSkip {
);
}


=head2 RowNum
Depending on the resultset attributes one of:
SELECT * FROM (
SELECT *, ROWNUM rownum__index FROM (
SELECT ...
) WHERE ROWNUM <= ($limit+$offset)
) WHERE rownum__index >= ($offset+1)
or
SELECT * FROM (
SELECT *, ROWNUM rownum__index FROM (
SELECT ...
)
) WHERE rownum__index BETWEEN ($offset+1) AND ($limit+$offset)
or
SELECT * FROM (
SELECT ...
) WHERE ROWNUM <= ($limit+1)
Supported by B<Oracle>.
=cut
Expand All @@ -234,33 +251,92 @@ sub _RowNum {
my $idx_name = $self->_quote ('rownum__index');
my $order_group_having = $self->_parse_rs_attrs($rs_attrs);

#
# There are two ways to limit in Oracle, one vastly faster than the other
# on large resultsets: https://decipherinfosys.wordpress.com/2007/08/09/paging-and-countstopkey-optimization/
# However Oracle is retarded and does not preserve stable ROWNUM() values
# when called twice in the same scope. Therefore unless the resultset is
# ordered by a unique set of columns, it is not safe to use the faster
# method, and the slower BETWEEN query is used instead
#
# FIXME - this is quite expensive, and doe snot perform caching of any sort
# as soon as some of the DQ work becomes viable consider switching this
# over
if ( __order_by_is_unique($rs_attrs) ) {

# if offset is 0 (first page) the we can skip a subquery
if (! $offset) {
push @{$self->{limit_bind}}, [ $self->__rows_bindtype => $rows ];

return <<EOS;
SELECT $outsel FROM (
SELECT $insel ${stripped_sql}${order_group_having}
) $qalias WHERE ROWNUM <= ?
EOS
}
else {
push @{$self->{limit_bind}}, [ $self->__total_bindtype => $offset + $rows ], [ $self->__offset_bindtype => $offset + 1 ];

if ($offset) {

push @{$self->{limit_bind}}, [ $self->__total_bindtype => $offset + $rows ], [ $self->__offset_bindtype => $offset + 1 ];

return <<EOS;
return <<EOS;
SELECT $outsel FROM (
SELECT $outsel, ROWNUM $idx_name FROM (
SELECT $insel ${stripped_sql}${order_group_having}
) $qalias WHERE ROWNUM <= ?
) $qalias WHERE $idx_name >= ?
EOS

}
}
else {
push @{$self->{limit_bind}}, [ $self->__rows_bindtype => $rows ];
push @{$self->{limit_bind}}, [ $self->__offset_bindtype => $offset + 1 ], [ $self->__total_bindtype => $offset + $rows ];

return <<EOS;
SELECT $outsel FROM (
SELECT $outsel FROM (
SELECT $outsel, ROWNUM $idx_name FROM (
SELECT $insel ${stripped_sql}${order_group_having}
) $qalias WHERE ROWNUM <= ?
) $qalias
) $qalias WHERE $idx_name BETWEEN ? AND ?
EOS
}
}

# determine if the supplied order_by contains a unique column (set)
sub __order_by_is_unique {
my $rs_attrs = shift;
my $rsrc = $rs_attrs->{_rsroot_rsrc};
my $order_by = $rs_attrs->{order_by}
|| return 0;

my $storage = $rsrc->schema->storage;

my @order_by_cols = map { $_->[0] } $storage->_extract_order_criteria($order_by)
or return 0;

my $colinfo =
$storage->_resolve_column_info($rs_attrs->{from}, \@order_by_cols);

my $sources = {
map {( "$_" => $_ )} map { $_->{-result_source} } values %$colinfo
};

my $supplied_order = {
map { $_ => 1 }
grep { exists $colinfo->{$_} and ! $colinfo->{$_}{is_nullable} }
@order_by_cols
};

return 0 unless keys %$supplied_order;

for my $uks (
map { values %$_ } map { +{ $_->unique_constraints } } values %$sources
) {
return 1
unless first { ! exists $supplied_order->{$_} } @$uks;
}

return 0;
}

# used by _Top and _FetchFirst
# used by _Top and _FetchFirst below
sub _prep_for_skimming_limit {
my ( $self, $sql, $rs_attrs ) = @_;

Expand Down
2 changes: 1 addition & 1 deletion lib/DBIx/Class/Storage/DBIHacks.pm
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ package #hide from PAUSE
#
# This module contains code that should never have seen the light of day,
# does not belong in the Storage, or is otherwise unfit for public
# display. The arrival of SQLA2 should immediately oboslete 90% of this
# display. The arrival of SQLA2 should immediately obsolete 90% of this
#

use strict;
Expand Down
21 changes: 13 additions & 8 deletions t/73oracle_hq.t
Original file line number Diff line number Diff line change
Expand Up @@ -316,7 +316,7 @@ do_creates($dbh);
my $rs = $schema->resultset('Artist')->search({}, {
start_with => { name => 'root' },
connect_by => { parentid => { -prior => { -ident => 'artistid' } } },
order_by => { -asc => 'name' },
order_by => [ { -asc => 'name' }, { -desc => 'artistid' } ],
rows => 2,
});

Expand All @@ -329,7 +329,7 @@ do_creates($dbh);
FROM artist me
START WITH name = ?
CONNECT BY parentid = PRIOR artistid
ORDER BY name ASC
ORDER BY name ASC, artistid DESC
) me
WHERE ROWNUM <= ?
)',
Expand All @@ -352,17 +352,22 @@ do_creates($dbh);
FROM (
SELECT artistid
FROM (
SELECT me.artistid
FROM artist me
START WITH name = ?
CONNECT BY parentid = PRIOR artistid
SELECT artistid, ROWNUM rownum__index
FROM (
SELECT me.artistid
FROM artist me
START WITH name = ?
CONNECT BY parentid = PRIOR artistid
) me
) me
WHERE ROWNUM <= ?
WHERE rownum__index BETWEEN ? AND ?
) me
)',
[
[ { 'sqlt_datatype' => 'varchar', 'dbic_colname' => 'name', 'sqlt_size' => 100 }
=> 'root'], [ $ROWS => 2 ] ,
=> 'root'],
[ $ROWS => 1 ],
[ $TOTAL => 2 ],
],
);

Expand Down
Loading

0 comments on commit 6a6394f

Please sign in to comment.