Always reselect a bind-containing order by even if appearing in the select list
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / SQLMaker / LimitDialects.pm
CommitLineData
d5dedbd6 1package DBIx::Class::SQLMaker::LimitDialects;
7fca91be 2
3use warnings;
4use strict;
5
7fca91be 6use List::Util 'first';
7use namespace::clean;
8
fcb7fcbb 9# constants are used not only here, but also in comparison tests
10sub __rows_bindtype () {
11 +{ sqlt_datatype => 'integer' }
12}
13sub __offset_bindtype () {
14 +{ sqlt_datatype => 'integer' }
15}
16sub __total_bindtype () {
17 +{ sqlt_datatype => 'integer' }
18}
19
d5dedbd6 20=head1 NAME
21
22DBIx::Class::SQLMaker::LimitDialects - SQL::Abstract::Limit-like functionality for DBIx::Class::SQLMaker
23
24=head1 DESCRIPTION
25
26This module replicates a lot of the functionality originally found in
27L<SQL::Abstract::Limit>. While simple limits would work as-is, the more
28complex dialects that require e.g. subqueries could not be reliably
29implemented without taking full advantage of the metadata locked within
30L<DBIx::Class::ResultSource> classes. After reimplementation of close to
3180% of the L<SQL::Abstract::Limit> functionality it was deemed more
32practical to simply make an independent DBIx::Class-specific limit-dialect
33provider.
34
35=head1 SQL LIMIT DIALECTS
36
37Note that the actual implementations listed below never use C<*> literally.
38Instead proper re-aliasing of selectors and order criteria is done, so that
39the limit dialect are safe to use on joined resultsets with clashing column
40names.
41
42Currently the provided dialects are:
43
d5dedbd6 44=head2 LimitOffset
45
46 SELECT ... LIMIT $limit OFFSET $offset
47
48Supported by B<PostgreSQL> and B<SQLite>
49
50=cut
7fca91be 51sub _LimitOffset {
fcb7fcbb 52 my ( $self, $sql, $rs_attrs, $rows, $offset ) = @_;
53 $sql .= $self->_parse_rs_attrs( $rs_attrs ) . " LIMIT ?";
54 push @{$self->{limit_bind}}, [ $self->__rows_bindtype => $rows ];
55 if ($offset) {
56 $sql .= " OFFSET ?";
57 push @{$self->{limit_bind}}, [ $self->__offset_bindtype => $offset ];
58 }
7fca91be 59 return $sql;
60}
61
d5dedbd6 62=head2 LimitXY
63
64 SELECT ... LIMIT $offset $limit
65
66Supported by B<MySQL> and any L<SQL::Statement> based DBD
67
68=cut
7fca91be 69sub _LimitXY {
fcb7fcbb 70 my ( $self, $sql, $rs_attrs, $rows, $offset ) = @_;
71 $sql .= $self->_parse_rs_attrs( $rs_attrs ) . " LIMIT ";
72 if ($offset) {
73 $sql .= '?, ';
74 push @{$self->{limit_bind}}, [ $self->__offset_bindtype => $offset ];
75 }
76 $sql .= '?';
77 push @{$self->{limit_bind}}, [ $self->__rows_bindtype => $rows ];
78
7fca91be 79 return $sql;
80}
d5dedbd6 81
82=head2 RowNumberOver
83
84 SELECT * FROM (
85 SELECT *, ROW_NUMBER() OVER( ORDER BY ... ) AS RNO__ROW__INDEX FROM (
86 SELECT ...
87 )
88 ) WHERE RNO__ROW__INDEX BETWEEN ($offset+1) AND ($limit+$offset)
89
90
91ANSI standard Limit/Offset implementation. Supported by B<DB2> and
92B<< MSSQL >= 2005 >>.
93
94=cut
7fca91be 95sub _RowNumberOver {
96 my ($self, $sql, $rs_attrs, $rows, $offset ) = @_;
97
7fca91be 98 # get selectors, and scan the order_by (if any)
cecf64bc 99 my $sq_attrs = $self->_subqueried_limit_attrs ( $sql, $rs_attrs );
7fca91be 100
101 # make up an order if none exists
102 my $requested_order = (delete $rs_attrs->{order_by}) || $self->_rno_default_order;
ebc5c60a 103
104 # the order binds (if any) will need to go at the end of the entire inner select
105 local $self->{order_bind};
7fca91be 106 my $rno_ord = $self->_order_by ($requested_order);
ebc5c60a 107 push @{$self->{select_bind}}, @{$self->{order_bind}};
7fca91be 108
109 # this is the order supplement magic
cecf64bc 110 my $mid_sel = $sq_attrs->{selection_outer};
111 if (my $extra_order_sel = $sq_attrs->{order_supplement}) {
7fca91be 112 for my $extra_col (sort
113 { $extra_order_sel->{$a} cmp $extra_order_sel->{$b} }
114 keys %$extra_order_sel
115 ) {
cecf64bc 116 $sq_attrs->{selection_inner} .= sprintf (', %s AS %s',
7fca91be 117 $extra_col,
118 $extra_order_sel->{$extra_col},
119 );
7fca91be 120 }
121 }
122
123 # and this is order re-alias magic
cecf64bc 124 for ($sq_attrs->{order_supplement}, $sq_attrs->{outer_renames}) {
7fca91be 125 for my $col (keys %$_) {
126 my $re_col = quotemeta ($col);
127 $rno_ord =~ s/$re_col/$_->{$col}/;
128 }
129 }
130
131 # whatever is left of the order_by (only where is processed at this point)
132 my $group_having = $self->_parse_rs_attrs($rs_attrs);
133
134 my $qalias = $self->_quote ($rs_attrs->{alias});
135 my $idx_name = $self->_quote ('rno__row__index');
136
69d3c270 137 push @{$self->{limit_bind}}, [ $self->__offset_bindtype => $offset + 1], [ $self->__total_bindtype => $offset + $rows ];
138
139 return <<EOS;
7fca91be 140
cecf64bc 141SELECT $sq_attrs->{selection_outer} FROM (
7fca91be 142 SELECT $mid_sel, ROW_NUMBER() OVER( $rno_ord ) AS $idx_name FROM (
cecf64bc 143 SELECT $sq_attrs->{selection_inner} $sq_attrs->{query_leftover}${group_having}
7fca91be 144 ) $qalias
fcb7fcbb 145) $qalias WHERE $idx_name >= ? AND $idx_name <= ?
7fca91be 146
147EOS
148
7fca91be 149}
150
151# some databases are happy with OVER (), some need OVER (ORDER BY (SELECT (1)) )
152sub _rno_default_order {
153 return undef;
154}
155
d5dedbd6 156=head2 SkipFirst
157
158 SELECT SKIP $offset FIRST $limit * FROM ...
159
160Suported by B<Informix>, almost like LimitOffset. According to
161L<SQL::Abstract::Limit> C<... SKIP $offset LIMIT $limit ...> is also supported.
162
163=cut
7fca91be 164sub _SkipFirst {
165 my ($self, $sql, $rs_attrs, $rows, $offset) = @_;
166
167 $sql =~ s/^ \s* SELECT \s+ //ix
70c28808 168 or $self->throw_exception("Unrecognizable SELECT: $sql");
7fca91be 169
170 return sprintf ('SELECT %s%s%s%s',
171 $offset
fcb7fcbb 172 ? do {
8b31f62e 173 push @{$self->{pre_select_bind}}, [ $self->__offset_bindtype => $offset];
fcb7fcbb 174 'SKIP ? '
175 }
7fca91be 176 : ''
177 ,
fcb7fcbb 178 do {
8b31f62e 179 push @{$self->{pre_select_bind}}, [ $self->__rows_bindtype => $rows ];
fcb7fcbb 180 'FIRST ? '
181 },
7fca91be 182 $sql,
183 $self->_parse_rs_attrs ($rs_attrs),
184 );
185}
186
d5dedbd6 187=head2 FirstSkip
188
189 SELECT FIRST $limit SKIP $offset * FROM ...
190
191Supported by B<Firebird/Interbase>, reverse of SkipFirst. According to
192L<SQL::Abstract::Limit> C<... ROWS $limit TO $offset ...> is also supported.
193
194=cut
7fca91be 195sub _FirstSkip {
196 my ($self, $sql, $rs_attrs, $rows, $offset) = @_;
197
198 $sql =~ s/^ \s* SELECT \s+ //ix
70c28808 199 or $self->throw_exception("Unrecognizable SELECT: $sql");
7fca91be 200
201 return sprintf ('SELECT %s%s%s%s',
fcb7fcbb 202 do {
8b31f62e 203 push @{$self->{pre_select_bind}}, [ $self->__rows_bindtype => $rows ];
fcb7fcbb 204 'FIRST ? '
205 },
7fca91be 206 $offset
fcb7fcbb 207 ? do {
8b31f62e 208 push @{$self->{pre_select_bind}}, [ $self->__offset_bindtype => $offset];
fcb7fcbb 209 'SKIP ? '
210 }
7fca91be 211 : ''
212 ,
213 $sql,
214 $self->_parse_rs_attrs ($rs_attrs),
215 );
216}
217
6a6394f1 218
d5dedbd6 219=head2 RowNum
220
6a6394f1 221Depending on the resultset attributes one of:
222
d5dedbd6 223 SELECT * FROM (
224 SELECT *, ROWNUM rownum__index FROM (
225 SELECT ...
d9672fb9 226 ) WHERE ROWNUM <= ($limit+$offset)
227 ) WHERE rownum__index >= ($offset+1)
d5dedbd6 228
6a6394f1 229or
230
231 SELECT * FROM (
232 SELECT *, ROWNUM rownum__index FROM (
233 SELECT ...
234 )
235 ) WHERE rownum__index BETWEEN ($offset+1) AND ($limit+$offset)
236
237or
238
239 SELECT * FROM (
240 SELECT ...
241 ) WHERE ROWNUM <= ($limit+1)
242
d5dedbd6 243Supported by B<Oracle>.
244
245=cut
7fca91be 246sub _RowNum {
247 my ( $self, $sql, $rs_attrs, $rows, $offset ) = @_;
248
cecf64bc 249 my $sq_attrs = $self->_subqueried_limit_attrs ($sql, $rs_attrs);
7fca91be 250
251 my $qalias = $self->_quote ($rs_attrs->{alias});
252 my $idx_name = $self->_quote ('rownum__index');
253 my $order_group_having = $self->_parse_rs_attrs($rs_attrs);
254
cccd1876 255
256 # if no offset (e.g. first page) - we can skip one of the subqueries
257 if (! $offset) {
258 push @{$self->{limit_bind}}, [ $self->__rows_bindtype => $rows ];
259
260 return <<EOS;
cecf64bc 261SELECT $sq_attrs->{selection_outer} FROM (
262 SELECT $sq_attrs->{selection_inner} $sq_attrs->{query_leftover}${order_group_having}
cccd1876 263) $qalias WHERE ROWNUM <= ?
264EOS
265 }
266
6a6394f1 267 #
268 # There are two ways to limit in Oracle, one vastly faster than the other
269 # on large resultsets: https://decipherinfosys.wordpress.com/2007/08/09/paging-and-countstopkey-optimization/
270 # However Oracle is retarded and does not preserve stable ROWNUM() values
271 # when called twice in the same scope. Therefore unless the resultset is
272 # ordered by a unique set of columns, it is not safe to use the faster
273 # method, and the slower BETWEEN query is used instead
274 #
7cec4356 275 # FIXME - this is quite expensive, and does not perform caching of any sort
6a6394f1 276 # as soon as some of the DQ work becomes viable consider switching this
277 # over
7cec4356 278 if (
279 $rs_attrs->{order_by}
280 and
281 $rs_attrs->{_rsroot_rsrc}->storage->_order_by_is_stable(
282 $rs_attrs->{from}, $rs_attrs->{order_by}
283 )
284 ) {
cccd1876 285 push @{$self->{limit_bind}}, [ $self->__total_bindtype => $offset + $rows ], [ $self->__offset_bindtype => $offset + 1 ];
6a6394f1 286
cccd1876 287 return <<EOS;
cecf64bc 288SELECT $sq_attrs->{selection_outer} FROM (
289 SELECT $sq_attrs->{selection_outer}, ROWNUM $idx_name FROM (
290 SELECT $sq_attrs->{selection_inner} $sq_attrs->{query_leftover}${order_group_having}
fcb7fcbb 291 ) $qalias WHERE ROWNUM <= ?
292) $qalias WHERE $idx_name >= ?
7fca91be 293EOS
d9672fb9 294 }
295 else {
6a6394f1 296 push @{$self->{limit_bind}}, [ $self->__offset_bindtype => $offset + 1 ], [ $self->__total_bindtype => $offset + $rows ];
69d3c270 297
298 return <<EOS;
cecf64bc 299SELECT $sq_attrs->{selection_outer} FROM (
300 SELECT $sq_attrs->{selection_outer}, ROWNUM $idx_name FROM (
301 SELECT $sq_attrs->{selection_inner} $sq_attrs->{query_leftover}${order_group_having}
6a6394f1 302 ) $qalias
303) $qalias WHERE $idx_name BETWEEN ? AND ?
d9672fb9 304EOS
6a6394f1 305 }
306}
7fca91be 307
6a6394f1 308# used by _Top and _FetchFirst below
96eacdb7 309sub _prep_for_skimming_limit {
310 my ( $self, $sql, $rs_attrs ) = @_;
7fca91be 311
7fca91be 312 # get selectors
cecf64bc 313 my $sq_attrs = $self->_subqueried_limit_attrs ($sql, $rs_attrs);
7fca91be 314
315 my $requested_order = delete $rs_attrs->{order_by};
cecf64bc 316 $sq_attrs->{order_by_requested} = $self->_order_by ($requested_order);
317 $sq_attrs->{grpby_having} = $self->_parse_rs_attrs ($rs_attrs);
7fca91be 318
a66b662c 319 # without an offset things are easy
320 if (! $rs_attrs->{offset}) {
321 $sq_attrs->{order_by_inner} = $sq_attrs->{order_by_requested};
86bb5a27 322 }
323 else {
a66b662c 324 $sq_attrs->{quoted_rs_alias} = $self->_quote ($rs_attrs->{alias});
325
326 # localise as we already have all the bind values we need
327 local $self->{order_bind};
328
329 # make up an order unless supplied or sanity check what we are given
330 my $inner_order;
331 if ($sq_attrs->{order_by_requested}) {
332 $self->throw_exception (
333 'Unable to safely perform "skimming type" limit with supplied unstable order criteria'
334 ) unless $rs_attrs->{_rsroot_rsrc}->schema->storage->_order_by_is_stable(
335 $rs_attrs->{from},
336 $requested_order
337 );
7fca91be 338
a66b662c 339 $inner_order = $requested_order;
340 }
341 else {
342 $inner_order = [ map
343 { "$rs_attrs->{alias}.$_" }
344 ( @{
345 $rs_attrs->{_rsroot_rsrc}->_identifying_column_set
346 ||
347 $self->throw_exception(sprintf(
348 'Unable to auto-construct stable order criteria for "skimming type" limit '
349 . "dialect based on source '%s'", $rs_attrs->{_rsroot_rsrc}->name) );
350 } )
351 ];
352 }
7fca91be 353
a66b662c 354 $sq_attrs->{order_by_inner} = $self->_order_by ($inner_order);
cecf64bc 355
a66b662c 356 my @out_chunks;
357 for my $ch ($self->_order_by_chunks ($inner_order)) {
358 $ch = $ch->[0] if ref $ch eq 'ARRAY';
7fca91be 359
a66b662c 360 $ch =~ s/\s+ ( ASC|DESC ) \s* $//ix;
361 my $dir = uc ($1||'ASC');
362 push @out_chunks, \join (' ', $ch, $dir eq 'ASC' ? 'DESC' : 'ASC' );
7fca91be 363 }
364
a66b662c 365 $sq_attrs->{order_by_middle} = $self->_order_by (\@out_chunks);
366
367 # this is the order supplement magic
368 $sq_attrs->{selection_middle} = $sq_attrs->{selection_outer};
369 if (my $extra_order_sel = $sq_attrs->{order_supplement}) {
370 for my $extra_col (sort
371 { $extra_order_sel->{$a} cmp $extra_order_sel->{$b} }
372 keys %$extra_order_sel
373 ) {
374 $sq_attrs->{selection_inner} .= sprintf (', %s AS %s',
375 $extra_col,
376 $extra_order_sel->{$extra_col},
377 );
378
379 $sq_attrs->{selection_middle} .= ', ' . $extra_order_sel->{$extra_col};
380 }
381
382 # Whatever order bindvals there are, they will be realiased and
383 # reselected, and need to show up at end of the initial inner select
384 push @{$self->{select_bind}}, @{$self->{order_bind}};
385
386 # if this is a part of something bigger, we need to add back all
387 # the extra order_by's, as they may be relied upon by the outside
388 # of a prefetch or something
389 if ($rs_attrs->{_is_internal_subuery}) {
390 $sq_attrs->{selection_outer} .= sprintf ", $extra_order_sel->{$_} AS $_"
391 for sort
392 { $extra_order_sel->{$a} cmp $extra_order_sel->{$b} }
393 grep { $_ !~ /[^\w\-]/ } # ignore functions
394 keys %$extra_order_sel
395 ;
396 }
cecf64bc 397 }
86bb5a27 398
a66b662c 399 # and this is order re-alias magic
400 for my $map ($sq_attrs->{order_supplement}, $sq_attrs->{outer_renames}) {
401 for my $col (sort { $map->{$a} cmp $map->{$b} } keys %{$map||{}}) {
402 my $re_col = quotemeta ($col);
403 $_ =~ s/$re_col/$map->{$col}/
404 for ($sq_attrs->{order_by_middle}, $sq_attrs->{order_by_requested});
405 }
7fca91be 406 }
407 }
408
cecf64bc 409 $sq_attrs;
96eacdb7 410}
411
412=head2 Top
413
414 SELECT * FROM
415
416 SELECT TOP $limit FROM (
417 SELECT TOP $limit FROM (
418 SELECT TOP ($limit+$offset) ...
419 ) ORDER BY $reversed_original_order
420 ) ORDER BY $original_order
421
422Unreliable Top-based implementation, supported by B<< MSSQL < 2005 >>.
423
424=head3 CAVEAT
425
426Due to its implementation, this limit dialect returns B<incorrect results>
427when $limit+$offset > total amount of rows in the resultset.
428
429=cut
430
431sub _Top {
432 my ( $self, $sql, $rs_attrs, $rows, $offset ) = @_;
433
cecf64bc 434 my $lim = $self->_prep_for_skimming_limit($sql, $rs_attrs);
7fca91be 435
436 $sql = sprintf ('SELECT TOP %u %s %s %s %s',
437 $rows + ($offset||0),
a66b662c 438 $offset ? $lim->{selection_inner} : $lim->{selection_original},
cecf64bc 439 $lim->{query_leftover},
440 $lim->{grpby_having},
441 $lim->{order_by_inner},
7fca91be 442 );
443
444 $sql = sprintf ('SELECT TOP %u %s FROM ( %s ) %s %s',
445 $rows,
cecf64bc 446 $lim->{selection_middle},
7fca91be 447 $sql,
cecf64bc 448 $lim->{quoted_rs_alias},
449 $lim->{order_by_middle},
7fca91be 450 ) if $offset;
451
1b07861d 452 $sql = sprintf ('SELECT %s FROM ( %s ) %s %s',
cecf64bc 453 $lim->{selection_outer},
96eacdb7 454 $sql,
cecf64bc 455 $lim->{quoted_rs_alias},
456 $lim->{order_by_requested},
457 ) if $offset and (
458 $lim->{order_by_requested} or $lim->{selection_middle} ne $lim->{selection_outer}
459 );
96eacdb7 460
461 return $sql;
462}
463
464=head2 FetchFirst
465
466 SELECT * FROM
467 (
468 SELECT * FROM (
469 SELECT * FROM (
470 SELECT * FROM ...
471 ) ORDER BY $reversed_original_order
472 FETCH FIRST $limit ROWS ONLY
473 ) ORDER BY $original_order
474 FETCH FIRST $limit ROWS ONLY
475 )
476
477Unreliable FetchFirst-based implementation, supported by B<< IBM DB2 <= V5R3 >>.
478
479=head3 CAVEAT
480
481Due to its implementation, this limit dialect returns B<incorrect results>
482when $limit+$offset > total amount of rows in the resultset.
483
484=cut
485
486sub _FetchFirst {
487 my ( $self, $sql, $rs_attrs, $rows, $offset ) = @_;
488
cecf64bc 489 my $lim = $self->_prep_for_skimming_limit($sql, $rs_attrs);
96eacdb7 490
491 $sql = sprintf ('SELECT %s %s %s %s FETCH FIRST %u ROWS ONLY',
a66b662c 492 $offset ? $lim->{selection_inner} : $lim->{selection_original},
cecf64bc 493 $lim->{query_leftover},
494 $lim->{grpby_having},
495 $lim->{order_by_inner},
96eacdb7 496 $rows + ($offset||0),
497 );
498
499 $sql = sprintf ('SELECT %s FROM ( %s ) %s %s FETCH FIRST %u ROWS ONLY',
cecf64bc 500 $lim->{selection_middle},
96eacdb7 501 $sql,
cecf64bc 502 $lim->{quoted_rs_alias},
503 $lim->{order_by_middle},
96eacdb7 504 $rows,
505 ) if $offset;
506
cecf64bc 507
1b07861d 508 $sql = sprintf ('SELECT %s FROM ( %s ) %s %s',
cecf64bc 509 $lim->{selection_outer},
7fca91be 510 $sql,
cecf64bc 511 $lim->{quoted_rs_alias},
512 $lim->{order_by_requested},
cecf64bc 513 ) if $offset and (
514 $lim->{order_by_requested} or $lim->{selection_middle} ne $lim->{selection_outer}
515 );
7fca91be 516
7fca91be 517 return $sql;
518}
519
d5dedbd6 520=head2 RowCountOrGenericSubQ
521
522This is not exactly a limit dialect, but more of a proxy for B<Sybase ASE>.
523If no $offset is supplied the limit is simply performed as:
524
525 SET ROWCOUNT $limit
526 SELECT ...
527 SET ROWCOUNT 0
528
529Otherwise we fall back to L</GenericSubQ>
530
531=cut
96eacdb7 532
7fca91be 533sub _RowCountOrGenericSubQ {
534 my $self = shift;
535 my ($sql, $rs_attrs, $rows, $offset) = @_;
536
537 return $self->_GenericSubQ(@_) if $offset;
538
539 return sprintf <<"EOF", $rows, $sql;
540SET ROWCOUNT %d
541%s
542SET ROWCOUNT 0
543EOF
544}
545
d5dedbd6 546=head2 GenericSubQ
547
548 SELECT * FROM (
549 SELECT ...
550 )
551 WHERE (
552 SELECT COUNT(*) FROM $original_table cnt WHERE cnt.id < $original_table.id
553 ) BETWEEN $offset AND ($offset+$rows-1)
554
555This is the most evil limit "dialect" (more of a hack) for I<really> stupid
556databases. It works by ordering the set by some unique column, and calculating
557the amount of rows that have a less-er value (thus emulating a L</RowNum>-like
558index). Of course this implies the set can only be ordered by a single unique
559column. Also note that this technique can be and often is B<excruciatingly
560slow>.
561
562Currently used by B<Sybase ASE>, due to lack of any other option.
563
564=cut
7fca91be 565sub _GenericSubQ {
566 my ($self, $sql, $rs_attrs, $rows, $offset) = @_;
567
4376a157 568 my $root_rsrc = $rs_attrs->{_rsroot_rsrc};
7fca91be 569 my $root_tbl_name = $root_rsrc->name;
570
528e717e 571 my ($first_order_by) = do {
7fca91be 572 local $self->{quote_char};
2d841fdc 573 local $self->{order_bind};
528e717e 574 map { ref $_ ? $_->[0] : $_ } $self->_order_by_chunks ($rs_attrs->{order_by})
575 } or $self->throw_exception (
576 'Generic Subquery Limit does not work on resultsets without an order. Provide a single, '
577 . 'unique-column order criteria.'
578 );
7fca91be 579
528e717e 580 $first_order_by =~ s/\s+ ( ASC|DESC ) \s* $//ix;
7fca91be 581 my $direction = lc ($1 || 'asc');
582
528e717e 583 my ($first_ord_alias, $first_ord_col) = $first_order_by =~ /^ (?: ([^\.]+) \. )? ([^\.]+) $/x;
7fca91be 584
528e717e 585 $self->throw_exception(sprintf
586 "Generic Subquery Limit order criteria can be only based on the root-source '%s'"
587 . " (aliased as '%s')", $root_rsrc->source_name, $rs_attrs->{alias},
588 ) if ($first_ord_alias and $first_ord_alias ne $rs_attrs->{alias});
7fca91be 589
528e717e 590 $first_ord_alias ||= $rs_attrs->{alias};
7fca91be 591
70c28808 592 $self->throw_exception(
528e717e 593 "Generic Subquery Limit first order criteria '$first_ord_col' must be unique"
594 ) unless $root_rsrc->_identifying_column_set([$first_ord_col]);
7fca91be 595
2d841fdc 596 my $sq_attrs = do {
597 # perform the mangling only using the very first order crietria
598 # (the one we care about)
599 local $rs_attrs->{order_by} = $first_order_by;
600 $self->_subqueried_limit_attrs ($sql, $rs_attrs);
601 };
7fca91be 602
603 my $cmp_op = $direction eq 'desc' ? '>' : '<';
604 my $count_tbl_alias = 'rownum__emulation';
605
2d841fdc 606 my ($order_sql, @order_bind) = do {
607 local $self->{order_bind};
608 my $s = $self->_order_by (delete $rs_attrs->{order_by});
609 ($s, @{$self->{order_bind}});
610 };
7fca91be 611 my $group_having_sql = $self->_parse_rs_attrs($rs_attrs);
612
cecf64bc 613 my $in_sel = $sq_attrs->{selection_inner};
614
7fca91be 615 # add the order supplement (if any) as this is what will be used for the outer WHERE
cecf64bc 616 $in_sel .= ", $_" for keys %{$sq_attrs->{order_supplement}};
7fca91be 617
69d3c270 618 my $rownum_cond;
619 if ($offset) {
620 $rownum_cond = 'BETWEEN ? AND ?';
621
622 push @{$self->{limit_bind}},
623 [ $self->__offset_bindtype => $offset ],
624 [ $self->__total_bindtype => $offset + $rows - 1]
625 ;
626 }
627 else {
628 $rownum_cond = '< ?';
629
630 push @{$self->{limit_bind}},
631 [ $self->__rows_bindtype => $rows ]
632 ;
633 }
634
2d841fdc 635 # even though binds in order_by make no sense here (the rs needs to be
636 # ordered by a unique column first) - pass whatever there may be through
637 # anyway
638 push @{$self->{limit_bind}}, @order_bind;
639
69d3c270 640 return sprintf ("
cecf64bc 641SELECT $sq_attrs->{selection_outer}
7fca91be 642 FROM (
cecf64bc 643 SELECT $in_sel $sq_attrs->{query_leftover}${group_having_sql}
7fca91be 644 ) %s
69d3c270 645WHERE ( SELECT COUNT(*) FROM %s %s WHERE %s $cmp_op %s ) $rownum_cond
7fca91be 646$order_sql
69d3c270 647 ", map { $self->_quote ($_) } (
648 $rs_attrs->{alias},
649 $root_tbl_name,
650 $count_tbl_alias,
528e717e 651 "$count_tbl_alias.$first_ord_col",
652 "$first_ord_alias.$first_ord_col",
69d3c270 653 ));
7fca91be 654}
655
656
657# !!! THIS IS ALSO HORRIFIC !!! /me ashamed
658#
659# Generates inner/outer select lists for various limit dialects
660# which result in one or more subqueries (e.g. RNO, Top, RowNum)
661# Any non-root-table columns need to have their table qualifier
662# turned into a column alias (otherwise names in subqueries clash
663# and/or lose their source table)
664#
69d3c270 665# Returns mangled proto-sql, inner/outer strings of SQL QUOTED selectors
666# with aliases (to be used in whatever select statement), and an alias
8273e845 667# index hashref of QUOTED SEL => QUOTED ALIAS pairs (to maybe be used
69d3c270 668# for string-subst higher up).
7fca91be 669# If an order_by is supplied, the inner select needs to bring out columns
670# used in implicit (non-selected) orders, and the order condition itself
671# needs to be realiased to the proper names in the outer query. Thus we
672# also return a hashref (order doesn't matter) of QUOTED EXTRA-SEL =>
673# QUOTED ALIAS pairs, which is a list of extra selectors that do *not*
674# exist in the original select list
7fca91be 675sub _subqueried_limit_attrs {
69d3c270 676 my ($self, $proto_sql, $rs_attrs) = @_;
7fca91be 677
70c28808 678 $self->throw_exception(
679 'Limit dialect implementation usable only in the context of DBIC (missing $rs_attrs)'
680 ) unless ref ($rs_attrs) eq 'HASH';
7fca91be 681
f74d22e2 682 # mangle the input sql as we will be replacing the selector entirely
683 unless (
684 $rs_attrs->{_selector_sql}
685 and
686 $proto_sql =~ s/^ \s* SELECT \s* \Q$rs_attrs->{_selector_sql}//ix
687 ) {
688 $self->throw_exception("Unrecognizable SELECT: $proto_sql");
689 }
69d3c270 690
3f5b99fe 691 my ($re_sep, $re_alias) = map { quotemeta $_ } ( $self->{name_sep}, $rs_attrs->{alias} );
7fca91be 692
69d3c270 693 # insulate from the multiple _recurse_fields calls below
694 local $self->{select_bind};
695
7fca91be 696 # correlate select and as, build selection index
697 my (@sel, $in_sel_index);
698 for my $i (0 .. $#{$rs_attrs->{select}}) {
699
700 my $s = $rs_attrs->{select}[$i];
701 my $sql_sel = $self->_recurse_fields ($s);
702 my $sql_alias = (ref $s) eq 'HASH' ? $s->{-as} : undef;
703
7fca91be 704 push @sel, {
90ed89cb 705 arg => $s,
7fca91be 706 sql => $sql_sel,
69d3c270 707 unquoted_sql => do {
708 local $self->{quote_char};
709 $self->_recurse_fields ($s);
710 },
7fca91be 711 as =>
712 $sql_alias
713 ||
714 $rs_attrs->{as}[$i]
715 ||
70c28808 716 $self->throw_exception("Select argument $i ($s) without corresponding 'as'")
7fca91be 717 ,
718 };
719
f1be7448 720 # anything with a placeholder in it needs re-selection
721 $in_sel_index->{$sql_sel}++ unless $sql_sel =~ / (?: ^ | \W ) \? (?: \W | $ ) /x;
722
7fca91be 723 $in_sel_index->{$self->_quote ($sql_alias)}++ if $sql_alias;
724
725 # record unqualified versions too, so we do not have
726 # to reselect the same column twice (in qualified and
727 # unqualified form)
728 if (! ref $s && $sql_sel =~ / $re_sep (.+) $/x) {
729 $in_sel_index->{$1}++;
730 }
731 }
732
733
734 # re-alias and remove any name separators from aliases,
735 # unless we are dealing with the current source alias
736 # (which will transcend the subqueries as it is necessary
737 # for possible further chaining)
cecf64bc 738 my ($sel, $renamed);
7fca91be 739 for my $node (@sel) {
a66b662c 740 push @{$sel->{original}}, $node->{sql};
741
3f5b99fe 742 if (
743 $node->{as} =~ / (?<! ^ $re_alias ) \. /x
744 or
745 $node->{unquoted_sql} =~ / (?<! ^ $re_alias ) $re_sep /x
746 ) {
7fca91be 747 $node->{as} = $self->_unqualify_colname($node->{as});
748 my $quoted_as = $self->_quote($node->{as});
cecf64bc 749 push @{$sel->{inner}}, sprintf '%s AS %s', $node->{sql}, $quoted_as;
750 push @{$sel->{outer}}, $quoted_as;
751 $renamed->{$node->{sql}} = $quoted_as;
7fca91be 752 }
753 else {
cecf64bc 754 push @{$sel->{inner}}, $node->{sql};
90ed89cb 755 push @{$sel->{outer}}, $self->_quote (ref $node->{arg} ? $node->{as} : $node->{arg});
7fca91be 756 }
757 }
cecf64bc 758
7fca91be 759 # see if the order gives us anything
cecf64bc 760 my $extra_order_sel;
7fca91be 761 for my $chunk ($self->_order_by_chunks ($rs_attrs->{order_by})) {
762 # order with bind
763 $chunk = $chunk->[0] if (ref $chunk) eq 'ARRAY';
764 $chunk =~ s/\s+ (?: ASC|DESC ) \s* $//ix;
765
766 next if $in_sel_index->{$chunk};
767
cecf64bc 768 $extra_order_sel->{$chunk} ||= $self->_quote (
769 'ORDER__BY__' . scalar keys %{$extra_order_sel||{}}
7fca91be 770 );
771 }
772
cecf64bc 773 return {
774 query_leftover => $proto_sql,
775 (map {( "selection_$_" => join (', ', @{$sel->{$_}} ) )} keys %$sel ),
776 outer_renames => $renamed,
777 order_supplement => $extra_order_sel,
778 };
7fca91be 779}
780
781sub _unqualify_colname {
782 my ($self, $fqcn) = @_;
3f5b99fe 783 $fqcn =~ s/ \. /__/xg;
7fca91be 784 return $fqcn;
785}
786
7871;
d5dedbd6 788
789=head1 AUTHORS
790
791See L<DBIx::Class/CONTRIBUTORS>.
792
793=head1 LICENSE
794
795You may distribute this code under the same terms as Perl itself.
796
797=cut