b0dfe434a65e2c0fa09b185726ae1e602ade466c
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / Storage / DBIHacks.pm
1 package   #hide from PAUSE
2   DBIx::Class::Storage::DBIHacks;
3
4 #
5 # This module contains code that should never have seen the light of day,
6 # does not belong in the Storage, or is otherwise unfit for public
7 # display. The arrival of SQLA2 should immediately obsolete 90% of this
8 #
9
10 use strict;
11 use warnings;
12
13 use base 'DBIx::Class::Storage';
14 use mro 'c3';
15
16 use List::Util 'first';
17 use Scalar::Util 'blessed';
18 use DBIx::Class::_Util qw(UNRESOLVABLE_CONDITION serialize);
19 use SQL::Abstract qw(is_plain_value is_literal_value);
20 use DBIx::Class::Carp;
21 use namespace::clean;
22
23 #
24 # This code will remove non-selecting/non-restricting joins from
25 # {from} specs, aiding the RDBMS query optimizer
26 #
27 sub _prune_unused_joins {
28   my ($self, $attrs) = @_;
29
30   # only standard {from} specs are supported, and we could be disabled in general
31   return ($attrs->{from}, {})  unless (
32     ref $attrs->{from} eq 'ARRAY'
33       and
34     @{$attrs->{from}} > 1
35       and
36     ref $attrs->{from}[0] eq 'HASH'
37       and
38     ref $attrs->{from}[1] eq 'ARRAY'
39       and
40     $self->_use_join_optimizer
41   );
42
43   my $orig_aliastypes = $self->_resolve_aliastypes_from_select_args($attrs);
44
45   my $new_aliastypes = { %$orig_aliastypes };
46
47   # we will be recreating this entirely
48   my @reclassify = 'joining';
49
50   # a grouped set will not be affected by amount of rows. Thus any
51   # purely multiplicator classifications can go
52   # (will be reintroduced below if needed by something else)
53   push @reclassify, qw(multiplying premultiplied)
54     if $attrs->{_force_prune_multiplying_joins} or $attrs->{group_by};
55
56   # nuke what will be recalculated
57   delete @{$new_aliastypes}{@reclassify};
58
59   my @newfrom = $attrs->{from}[0]; # FROM head is always present
60
61   # recalculate what we need once the multipliers are potentially gone
62   # ignore premultiplies, since they do not add any value to anything
63   my %need_joins;
64   for ( @{$new_aliastypes}{grep { $_ ne 'premultiplied' } keys %$new_aliastypes }) {
65     # add all requested aliases
66     $need_joins{$_} = 1 for keys %$_;
67
68     # add all their parents (as per joinpath which is an AoH { table => alias })
69     $need_joins{$_} = 1 for map { values %$_ } map { @{$_->{-parents}} } values %$_;
70   }
71
72   for my $j (@{$attrs->{from}}[1..$#{$attrs->{from}}]) {
73     push @newfrom, $j if (
74       (! defined $j->[0]{-alias}) # legacy crap
75         ||
76       $need_joins{$j->[0]{-alias}}
77     );
78   }
79
80   # we have a new set of joiners - for everything we nuked pull the classification
81   # off the original stack
82   for my $ctype (@reclassify) {
83     $new_aliastypes->{$ctype} = { map
84       { $need_joins{$_} ? ( $_ => $orig_aliastypes->{$ctype}{$_} ) : () }
85       keys %{$orig_aliastypes->{$ctype}}
86     }
87   }
88
89   return ( \@newfrom, $new_aliastypes );
90 }
91
92 #
93 # This is the code producing joined subqueries like:
94 # SELECT me.*, other.* FROM ( SELECT me.* FROM ... ) JOIN other ON ...
95 #
96 sub _adjust_select_args_for_complex_prefetch {
97   my ($self, $attrs) = @_;
98
99   $self->throw_exception ('Complex prefetches are not supported on resultsets with a custom from attribute') unless (
100     ref $attrs->{from} eq 'ARRAY'
101       and
102     @{$attrs->{from}} > 1
103       and
104     ref $attrs->{from}[0] eq 'HASH'
105       and
106     ref $attrs->{from}[1] eq 'ARRAY'
107   );
108
109   my $root_alias = $attrs->{alias};
110
111   # generate inner/outer attribute lists, remove stuff that doesn't apply
112   my $outer_attrs = { %$attrs };
113   delete @{$outer_attrs}{qw(from bind rows offset group_by _grouped_by_distinct having)};
114
115   my $inner_attrs = { %$attrs, _simple_passthrough_construction => 1 };
116   delete @{$inner_attrs}{qw(for collapse select as)};
117
118   # there is no point of ordering the insides if there is no limit
119   delete $inner_attrs->{order_by} if (
120     delete $inner_attrs->{_order_is_artificial}
121       or
122     ! $inner_attrs->{rows}
123   );
124
125   # generate the inner/outer select lists
126   # for inside we consider only stuff *not* brought in by the prefetch
127   # on the outside we substitute any function for its alias
128   $outer_attrs->{select} = [ @{$attrs->{select}} ];
129
130   my ($root_node, $root_node_offset);
131
132   for my $i (0 .. $#{$inner_attrs->{from}}) {
133     my $node = $inner_attrs->{from}[$i];
134     my $h = (ref $node eq 'HASH')                                ? $node
135           : (ref $node  eq 'ARRAY' and ref $node->[0] eq 'HASH') ? $node->[0]
136           : next
137     ;
138
139     if ( ($h->{-alias}||'') eq $root_alias and $h->{-rsrc} ) {
140       $root_node = $h;
141       $root_node_offset = $i;
142       last;
143     }
144   }
145
146   $self->throw_exception ('Complex prefetches are not supported on resultsets with a custom from attribute')
147     unless $root_node;
148
149   # use the heavy duty resolver to take care of aliased/nonaliased naming
150   my $colinfo = $self->_resolve_column_info($inner_attrs->{from});
151   my $selected_root_columns;
152
153   for my $i (0 .. $#{$outer_attrs->{select}}) {
154     my $sel = $outer_attrs->{select}->[$i];
155
156     next if (
157       $colinfo->{$sel} and $colinfo->{$sel}{-source_alias} ne $root_alias
158     );
159
160     if (ref $sel eq 'HASH' ) {
161       $sel->{-as} ||= $attrs->{as}[$i];
162       $outer_attrs->{select}->[$i] = join ('.', $root_alias, ($sel->{-as} || "inner_column_$i") );
163     }
164     elsif (! ref $sel and my $ci = $colinfo->{$sel}) {
165       $selected_root_columns->{$ci->{-colname}} = 1;
166     }
167
168     push @{$inner_attrs->{select}}, $sel;
169
170     push @{$inner_attrs->{as}}, $attrs->{as}[$i];
171   }
172
173   # We will need to fetch all native columns in the inner subquery, which may
174   # be a part of an *outer* join condition, or an order_by (which needs to be
175   # preserved outside), or wheres. In other words everything but the inner
176   # selector
177   # We can not just fetch everything because a potential has_many restricting
178   # join collapse *will not work* on heavy data types.
179   my $connecting_aliastypes = $self->_resolve_aliastypes_from_select_args({
180     %$inner_attrs,
181     select => [],
182   });
183
184   for (sort map { keys %{$_->{-seen_columns}||{}} } map { values %$_ } values %$connecting_aliastypes) {
185     my $ci = $colinfo->{$_} or next;
186     if (
187       $ci->{-source_alias} eq $root_alias
188         and
189       ! $selected_root_columns->{$ci->{-colname}}++
190     ) {
191       # adding it to both to keep limits not supporting dark selectors happy
192       push @{$inner_attrs->{select}}, $ci->{-fq_colname};
193       push @{$inner_attrs->{as}}, $ci->{-fq_colname};
194     }
195   }
196
197   # construct the inner {from} and lock it in a subquery
198   # we need to prune first, because this will determine if we need a group_by below
199   # throw away all non-selecting, non-restricting multijoins
200   # (since we def. do not care about multiplication of the contents of the subquery)
201   my $inner_subq = do {
202
203     # must use it here regardless of user requests (vastly gentler on optimizer)
204     local $self->{_use_join_optimizer} = 1;
205
206     # throw away multijoins since we def. do not care about those inside the subquery
207     ($inner_attrs->{from}, my $inner_aliastypes) = $self->_prune_unused_joins ({
208       %$inner_attrs, _force_prune_multiplying_joins => 1
209     });
210
211     # uh-oh a multiplier (which is not us) left in, this is a problem for limits
212     # we will need to add a group_by to collapse the resultset for proper counts
213     if (
214       grep { $_ ne $root_alias } keys %{ $inner_aliastypes->{multiplying} || {} }
215         and
216       # if there are user-supplied groups - assume user knows wtf they are up to
217       ( ! $inner_aliastypes->{grouping} or $inner_attrs->{_grouped_by_distinct} )
218     ) {
219
220       my $cur_sel = { map { $_ => 1 } @{$inner_attrs->{select}} };
221
222       # *possibly* supplement the main selection with pks if not already
223       # there, as they will have to be a part of the group_by to collapse
224       # things properly
225       my $inner_select_with_extras;
226       my @pks = map { "$root_alias.$_" } $root_node->{-rsrc}->primary_columns
227         or $self->throw_exception( sprintf
228           'Unable to perform complex limited prefetch off %s without declared primary key',
229           $root_node->{-rsrc}->source_name,
230         );
231       for my $col (@pks) {
232         push @{ $inner_select_with_extras ||= [ @{$inner_attrs->{select}} ] }, $col
233           unless $cur_sel->{$col}++;
234       }
235
236       ($inner_attrs->{group_by}, $inner_attrs->{order_by}) = $self->_group_over_selection({
237         %$inner_attrs,
238         $inner_select_with_extras ? ( select => $inner_select_with_extras ) : (),
239         _aliastypes => $inner_aliastypes,
240       });
241     }
242
243     # we already optimized $inner_attrs->{from} above
244     # and already local()ized
245     $self->{_use_join_optimizer} = 0;
246
247     # generate the subquery
248     $self->_select_args_to_query (
249       @{$inner_attrs}{qw(from select where)},
250       $inner_attrs,
251     );
252   };
253
254   # Generate the outer from - this is relatively easy (really just replace
255   # the join slot with the subquery), with a major caveat - we can not
256   # join anything that is non-selecting (not part of the prefetch), but at
257   # the same time is a multi-type relationship, as it will explode the result.
258   #
259   # There are two possibilities here
260   # - either the join is non-restricting, in which case we simply throw it away
261   # - it is part of the restrictions, in which case we need to collapse the outer
262   #   result by tackling yet another group_by to the outside of the query
263
264   # work on a shallow copy
265   my @orig_from = @{$attrs->{from}};
266
267
268   $outer_attrs->{from} = \ my @outer_from;
269
270   # we may not be the head
271   if ($root_node_offset) {
272     # first generate the outer_from, up to the substitution point
273     @outer_from = splice @orig_from, 0, $root_node_offset;
274
275     # substitute the subq at the right spot
276     push @outer_from, [
277       {
278         -alias => $root_alias,
279         -rsrc => $root_node->{-rsrc},
280         $root_alias => $inner_subq,
281       },
282       # preserve attrs from what is now the head of the from after the splice
283       @{$orig_from[0]}[1 .. $#{$orig_from[0]}],
284     ];
285   }
286   else {
287     @outer_from = {
288       -alias => $root_alias,
289       -rsrc => $root_node->{-rsrc},
290       $root_alias => $inner_subq,
291     };
292   }
293
294   shift @orig_from; # what we just replaced above
295
296   # scan the *remaining* from spec against different attributes, and see which joins are needed
297   # in what role
298   my $outer_aliastypes = $outer_attrs->{_aliastypes} =
299     $self->_resolve_aliastypes_from_select_args({ %$outer_attrs, from => \@orig_from });
300
301   # unroll parents
302   my ($outer_select_chain, @outer_nonselecting_chains) = map { +{
303     map { $_ => 1 } map { values %$_} map { @{$_->{-parents}} } values %{ $outer_aliastypes->{$_} || {} }
304   } } qw/selecting restricting grouping ordering/;
305
306   # see what's left - throw away if not selecting/restricting
307   my $may_need_outer_group_by;
308   while (my $j = shift @orig_from) {
309     my $alias = $j->[0]{-alias};
310
311     if (
312       $outer_select_chain->{$alias}
313     ) {
314       push @outer_from, $j
315     }
316     elsif (first { $_->{$alias} } @outer_nonselecting_chains ) {
317       push @outer_from, $j;
318       $may_need_outer_group_by ||= $outer_aliastypes->{multiplying}{$alias} ? 1 : 0;
319     }
320   }
321
322   # also throw in a synthetic group_by if a non-selecting multiplier,
323   # to guard against cross-join explosions
324   # the logic is somewhat fragile, but relies on the idea that if a user supplied
325   # a group by on their own - they know what they were doing
326   if ( $may_need_outer_group_by and $attrs->{_grouped_by_distinct} ) {
327     ($outer_attrs->{group_by}, $outer_attrs->{order_by}) = $self->_group_over_selection ({
328       %$outer_attrs,
329       from => \@outer_from,
330     });
331   }
332
333   # This is totally horrific - the {where} ends up in both the inner and outer query
334   # Unfortunately not much can be done until SQLA2 introspection arrives, and even
335   # then if where conditions apply to the *right* side of the prefetch, you may have
336   # to both filter the inner select (e.g. to apply a limit) and then have to re-filter
337   # the outer select to exclude joins you didn't want in the first place
338   #
339   # OTOH it can be seen as a plus: <ash> (notes that this query would make a DBA cry ;)
340   return $outer_attrs;
341 }
342
343 #
344 # I KNOW THIS SUCKS! GET SQLA2 OUT THE DOOR SO THIS CAN DIE!
345 #
346 # Due to a lack of SQLA2 we fall back to crude scans of all the
347 # select/where/order/group attributes, in order to determine what
348 # aliases are needed to fulfill the query. This information is used
349 # throughout the code to prune unnecessary JOINs from the queries
350 # in an attempt to reduce the execution time.
351 # Although the method is pretty horrific, the worst thing that can
352 # happen is for it to fail due to some scalar SQL, which in turn will
353 # result in a vocal exception.
354 sub _resolve_aliastypes_from_select_args {
355   my ( $self, $attrs ) = @_;
356
357   $self->throw_exception ('Unable to analyze custom {from}')
358     if ref $attrs->{from} ne 'ARRAY';
359
360   # what we will return
361   my $aliases_by_type;
362
363   # see what aliases are there to work with
364   # and record who is a multiplier and who is premultiplied
365   my $alias_list;
366   for my $node (@{$attrs->{from}}) {
367
368     my $j = $node;
369     $j = $j->[0] if ref $j eq 'ARRAY';
370     my $al = $j->{-alias}
371       or next;
372
373     $alias_list->{$al} = $j;
374
375     $aliases_by_type->{multiplying}{$al} ||= { -parents => $j->{-join_path}||[] }
376       # not array == {from} head == can't be multiplying
377       if ref($node) eq 'ARRAY' and ! $j->{-is_single};
378
379     $aliases_by_type->{premultiplied}{$al} ||= { -parents => $j->{-join_path}||[] }
380       # parts of the path that are not us but are multiplying
381       if grep { $aliases_by_type->{multiplying}{$_} }
382           grep { $_ ne $al }
383            map { values %$_ }
384             @{ $j->{-join_path}||[] }
385   }
386
387   # get a column to source/alias map (including unambiguous unqualified ones)
388   my $colinfo = $self->_resolve_column_info ($attrs->{from});
389
390   # set up a botched SQLA
391   my $sql_maker = $self->sql_maker;
392
393   # these are throw away results, do not pollute the bind stack
394   local $sql_maker->{where_bind};
395   local $sql_maker->{group_bind};
396   local $sql_maker->{having_bind};
397   local $sql_maker->{from_bind};
398
399   # we can't scan properly without any quoting (\b doesn't cut it
400   # everywhere), so unless there is proper quoting set - use our
401   # own weird impossible character.
402   # Also in the case of no quoting, we need to explicitly disable
403   # name_sep, otherwise sorry nasty legacy syntax like
404   # { 'count(foo.id)' => { '>' => 3 } } will stop working >:(
405   local $sql_maker->{quote_char} = $sql_maker->{quote_char};
406   local $sql_maker->{name_sep} = $sql_maker->{name_sep};
407
408   unless (defined $sql_maker->{quote_char} and length $sql_maker->{quote_char}) {
409     $sql_maker->{quote_char} = ["\x00", "\xFF"];
410     # if we don't unset it we screw up retarded but unfortunately working
411     # 'MAX(foo.bar)' => { '>', 3 }
412     $sql_maker->{name_sep} = '';
413   }
414
415   my ($lquote, $rquote, $sep) = map { quotemeta $_ } ($sql_maker->_quote_chars, $sql_maker->name_sep);
416
417   # generate sql chunks
418   my $to_scan = {
419     restricting => [
420       ($sql_maker->_recurse_where ($attrs->{where}))[0],
421       $sql_maker->_parse_rs_attrs ({ having => $attrs->{having} }),
422     ],
423     grouping => [
424       $sql_maker->_parse_rs_attrs ({ group_by => $attrs->{group_by} }),
425     ],
426     joining => [
427       $sql_maker->_recurse_from (
428         ref $attrs->{from}[0] eq 'ARRAY' ? $attrs->{from}[0][0] : $attrs->{from}[0],
429         @{$attrs->{from}}[1 .. $#{$attrs->{from}}],
430       ),
431     ],
432     selecting => [
433       # kill all selectors which look like a proper subquery
434       # this is a sucky heuristic *BUT* - if we get it wrong the query will simply
435       # fail to run, so we are relatively safe
436       grep
437         { $_ !~ / \A \s* \( \s* SELECT \s+ .+? \s+ FROM \s+ .+? \) \s* \z /xsi }
438         map
439           { ($sql_maker->_recurse_fields($_))[0] }
440           @{$attrs->{select}}
441     ],
442     ordering => [
443       map { $_->[0] } $self->_extract_order_criteria ($attrs->{order_by}, $sql_maker),
444     ],
445   };
446
447   # throw away empty-string chunks, and make sure no binds snuck in
448   # note that we operate over @{$to_scan->{$type}}, hence the
449   # semi-mindbending ... map ... for values ...
450   ( $_ = [ map {
451
452       (not $_)        ? ()
453     : (length ref $_) ? (require Data::Dumper::Concise && $self->throw_exception(
454                           "Unexpected ref in scan-plan: " . Data::Dumper::Concise::Dumper($_)
455                         ))
456     :                   $_
457
458   } @$_ ] ) for values %$to_scan;
459
460   # throw away empty to-scan's
461   (
462     @{$to_scan->{$_}}
463       or
464     delete $to_scan->{$_}
465   ) for keys %$to_scan;
466
467
468   # first see if we have any exact matches (qualified or unqualified)
469   for my $type (keys %$to_scan) {
470     for my $piece (@{$to_scan->{$type}}) {
471       if ($colinfo->{$piece} and my $alias = $colinfo->{$piece}{-source_alias}) {
472         $aliases_by_type->{$type}{$alias} ||= { -parents => $alias_list->{$alias}{-join_path}||[] };
473         $aliases_by_type->{$type}{$alias}{-seen_columns}{$colinfo->{$piece}{-fq_colname}} = $piece;
474       }
475     }
476   }
477
478   # now loop through all fully qualified columns and get the corresponding
479   # alias (should work even if they are in scalarrefs)
480   for my $alias (keys %$alias_list) {
481     my $al_re = qr/
482       $lquote $alias $rquote $sep (?: $lquote ([^$rquote]+) $rquote )?
483         |
484       \b $alias \. ([^\s\)\($rquote]+)?
485     /x;
486
487     for my $type (keys %$to_scan) {
488       for my $piece (@{$to_scan->{$type}}) {
489         if (my @matches = $piece =~ /$al_re/g) {
490           $aliases_by_type->{$type}{$alias} ||= { -parents => $alias_list->{$alias}{-join_path}||[] };
491           $aliases_by_type->{$type}{$alias}{-seen_columns}{"$alias.$_"} = "$alias.$_"
492             for grep { defined $_ } @matches;
493         }
494       }
495     }
496   }
497
498   # now loop through unqualified column names, and try to locate them within
499   # the chunks
500   for my $col (keys %$colinfo) {
501     next if $col =~ / \. /x;   # if column is qualified it was caught by the above
502
503     my $col_re = qr/ $lquote ($col) $rquote /x;
504
505     for my $type (keys %$to_scan) {
506       for my $piece (@{$to_scan->{$type}}) {
507         if ( my @matches = $piece =~ /$col_re/g) {
508           my $alias = $colinfo->{$col}{-source_alias};
509           $aliases_by_type->{$type}{$alias} ||= { -parents => $alias_list->{$alias}{-join_path}||[] };
510           $aliases_by_type->{$type}{$alias}{-seen_columns}{"$alias.$_"} = $_
511             for grep { defined $_ } @matches;
512         }
513       }
514     }
515   }
516
517   # Add any non-left joins to the restriction list (such joins are indeed restrictions)
518   for my $j (values %$alias_list) {
519     my $alias = $j->{-alias} or next;
520     $aliases_by_type->{restricting}{$alias} ||= { -parents => $j->{-join_path}||[] } if (
521       (not $j->{-join_type})
522         or
523       ($j->{-join_type} !~ /^left (?: \s+ outer)? $/xi)
524     );
525   }
526
527   for (keys %$aliases_by_type) {
528     delete $aliases_by_type->{$_} unless keys %{$aliases_by_type->{$_}};
529   }
530
531   return $aliases_by_type;
532 }
533
534 # This is the engine behind { distinct => 1 } and the general
535 # complex prefetch grouper
536 sub _group_over_selection {
537   my ($self, $attrs) = @_;
538
539   my $colinfos = $self->_resolve_column_info ($attrs->{from});
540
541   my (@group_by, %group_index);
542
543   # the logic is: if it is a { func => val } we assume an aggregate,
544   # otherwise if \'...' or \[...] we assume the user knows what is
545   # going on thus group over it
546   for (@{$attrs->{select}}) {
547     if (! ref($_) or ref ($_) ne 'HASH' ) {
548       push @group_by, $_;
549       $group_index{$_}++;
550       if ($colinfos->{$_} and $_ !~ /\./ ) {
551         # add a fully qualified version as well
552         $group_index{"$colinfos->{$_}{-source_alias}.$_"}++;
553       }
554     }
555   }
556
557   my @order_by = $self->_extract_order_criteria($attrs->{order_by})
558     or return (\@group_by, $attrs->{order_by});
559
560   # add any order_by parts that are not already present in the group_by
561   # to maintain SQL cross-compatibility and general sanity
562   #
563   # also in case the original selection is *not* unique, or in case part
564   # of the ORDER BY refers to a multiplier - we will need to replace the
565   # skipped order_by elements with their MIN/MAX equivalents as to maintain
566   # the proper overall order without polluting the group criteria (and
567   # possibly changing the outcome entirely)
568
569   my ($leftovers, $sql_maker, @new_order_by, $order_chunks, $aliastypes);
570
571   my $group_already_unique = $self->_columns_comprise_identifying_set($colinfos, \@group_by);
572
573   for my $o_idx (0 .. $#order_by) {
574
575     # if the chunk is already a min/max function - there is nothing left to touch
576     next if $order_by[$o_idx][0] =~ /^ (?: min | max ) \s* \( .+ \) $/ix;
577
578     # only consider real columns (for functions the user got to do an explicit group_by)
579     my $chunk_ci;
580     if (
581       @{$order_by[$o_idx]} != 1
582         or
583       # only declare an unknown *plain* identifier as "leftover" if we are called with
584       # aliastypes to examine. If there are none - we are still in _resolve_attrs, and
585       # can just assume the user knows what they want
586       ( ! ( $chunk_ci = $colinfos->{$order_by[$o_idx][0]} ) and $attrs->{_aliastypes} )
587     ) {
588       push @$leftovers, $order_by[$o_idx][0];
589     }
590
591     next unless $chunk_ci;
592
593     # no duplication of group criteria
594     next if $group_index{$chunk_ci->{-fq_colname}};
595
596     $aliastypes ||= (
597       $attrs->{_aliastypes}
598         or
599       $self->_resolve_aliastypes_from_select_args({
600         from => $attrs->{from},
601         order_by => $attrs->{order_by},
602       })
603     ) if $group_already_unique;
604
605     # check that we are not ordering by a multiplier (if a check is requested at all)
606     if (
607       $group_already_unique
608         and
609       ! $aliastypes->{multiplying}{$chunk_ci->{-source_alias}}
610         and
611       ! $aliastypes->{premultiplied}{$chunk_ci->{-source_alias}}
612     ) {
613       push @group_by, $chunk_ci->{-fq_colname};
614       $group_index{$chunk_ci->{-fq_colname}}++
615     }
616     else {
617       # We need to order by external columns without adding them to the group
618       # (eiehter a non-unique selection, or a multi-external)
619       #
620       # This doesn't really make sense in SQL, however from DBICs point
621       # of view is rather valid (e.g. order the leftmost objects by whatever
622       # criteria and get the offset/rows many). There is a way around
623       # this however in SQL - we simply tae the direction of each piece
624       # of the external order and convert them to MIN(X) for ASC or MAX(X)
625       # for DESC, and group_by the root columns. The end result should be
626       # exactly what we expect
627
628       # FIXME - this code is a joke, will need to be completely rewritten in
629       # the DQ branch. But I need to push a POC here, otherwise the
630       # pesky tests won't pass
631       # wrap any part of the order_by that "responds" to an ordering alias
632       # into a MIN/MAX
633       $sql_maker ||= $self->sql_maker;
634       $order_chunks ||= [
635         map { ref $_ eq 'ARRAY' ? $_ : [ $_ ] } $sql_maker->_order_by_chunks($attrs->{order_by})
636       ];
637
638       my ($chunk, $is_desc) = $sql_maker->_split_order_chunk($order_chunks->[$o_idx][0]);
639
640       $new_order_by[$o_idx] = \[
641         sprintf( '%s( %s )%s',
642           ($is_desc ? 'MAX' : 'MIN'),
643           $chunk,
644           ($is_desc ? ' DESC' : ''),
645         ),
646         @ {$order_chunks->[$o_idx]} [ 1 .. $#{$order_chunks->[$o_idx]} ]
647       ];
648     }
649   }
650
651   $self->throw_exception ( sprintf
652     'Unable to programatically derive a required group_by from the supplied '
653   . 'order_by criteria. To proceed either add an explicit group_by, or '
654   . 'simplify your order_by to only include plain columns '
655   . '(supplied order_by: %s)',
656     join ', ', map { "'$_'" } @$leftovers,
657   ) if $leftovers;
658
659   # recreate the untouched order parts
660   if (@new_order_by) {
661     $new_order_by[$_] ||= \ $order_chunks->[$_] for ( 0 .. $#$order_chunks );
662   }
663
664   return (
665     \@group_by,
666     (@new_order_by ? \@new_order_by : $attrs->{order_by} ),  # same ref as original == unchanged
667   );
668 }
669
670 sub _resolve_ident_sources {
671   my ($self, $ident) = @_;
672
673   my $alias2source = {};
674
675   # the reason this is so contrived is that $ident may be a {from}
676   # structure, specifying multiple tables to join
677   if ( blessed $ident && $ident->isa("DBIx::Class::ResultSource") ) {
678     # this is compat mode for insert/update/delete which do not deal with aliases
679     $alias2source->{me} = $ident;
680   }
681   elsif (ref $ident eq 'ARRAY') {
682
683     for (@$ident) {
684       my $tabinfo;
685       if (ref $_ eq 'HASH') {
686         $tabinfo = $_;
687       }
688       if (ref $_ eq 'ARRAY' and ref $_->[0] eq 'HASH') {
689         $tabinfo = $_->[0];
690       }
691
692       $alias2source->{$tabinfo->{-alias}} = $tabinfo->{-rsrc}
693         if ($tabinfo->{-rsrc});
694     }
695   }
696
697   return $alias2source;
698 }
699
700 # Takes $ident, \@column_names
701 #
702 # returns { $column_name => \%column_info, ... }
703 # also note: this adds -result_source => $rsrc to the column info
704 #
705 # If no columns_names are supplied returns info about *all* columns
706 # for all sources
707 sub _resolve_column_info {
708   my ($self, $ident, $colnames) = @_;
709
710   return {} if $colnames and ! @$colnames;
711
712   my $alias2src = $self->_resolve_ident_sources($ident);
713
714   my (%seen_cols, @auto_colnames);
715
716   # compile a global list of column names, to be able to properly
717   # disambiguate unqualified column names (if at all possible)
718   for my $alias (keys %$alias2src) {
719     my $rsrc = $alias2src->{$alias};
720     for my $colname ($rsrc->columns) {
721       push @{$seen_cols{$colname}}, $alias;
722       push @auto_colnames, "$alias.$colname" unless $colnames;
723     }
724   }
725
726   $colnames ||= [
727     @auto_colnames,
728     grep { @{$seen_cols{$_}} == 1 } (keys %seen_cols),
729   ];
730
731   my (%return, $colinfos);
732   foreach my $col (@$colnames) {
733     my ($source_alias, $colname) = $col =~ m/^ (?: ([^\.]+) \. )? (.+) $/x;
734
735     # if the column was seen exactly once - we know which rsrc it came from
736     $source_alias ||= $seen_cols{$colname}[0]
737       if ($seen_cols{$colname} and @{$seen_cols{$colname}} == 1);
738
739     next unless $source_alias;
740
741     my $rsrc = $alias2src->{$source_alias}
742       or next;
743
744     $return{$col} = {
745       %{
746           ( $colinfos->{$source_alias} ||= $rsrc->columns_info )->{$colname}
747             ||
748           $self->throw_exception(
749             "No such column '$colname' on source " . $rsrc->source_name
750           );
751       },
752       -result_source => $rsrc,
753       -source_alias => $source_alias,
754       -fq_colname => $col eq $colname ? "$source_alias.$col" : $col,
755       -colname => $colname,
756     };
757
758     $return{"$source_alias.$colname"} = $return{$col} if $col eq $colname;
759   }
760
761   return \%return;
762 }
763
764 # The DBIC relationship chaining implementation is pretty simple - every
765 # new related_relationship is pushed onto the {from} stack, and the {select}
766 # window simply slides further in. This means that when we count somewhere
767 # in the middle, we got to make sure that everything in the join chain is an
768 # actual inner join, otherwise the count will come back with unpredictable
769 # results (a resultset may be generated with _some_ rows regardless of if
770 # the relation which the $rs currently selects has rows or not). E.g.
771 # $artist_rs->cds->count - normally generates:
772 # SELECT COUNT( * ) FROM artist me LEFT JOIN cd cds ON cds.artist = me.artistid
773 # which actually returns the number of artists * (number of cds || 1)
774 #
775 # So what we do here is crawl {from}, determine if the current alias is at
776 # the top of the stack, and if not - make sure the chain is inner-joined down
777 # to the root.
778 #
779 sub _inner_join_to_node {
780   my ($self, $from, $alias) = @_;
781
782   my $switch_branch = $self->_find_join_path_to_node($from, $alias);
783
784   return $from unless @{$switch_branch||[]};
785
786   # So it looks like we will have to switch some stuff around.
787   # local() is useless here as we will be leaving the scope
788   # anyway, and deep cloning is just too fucking expensive
789   # So replace the first hashref in the node arrayref manually
790   my @new_from = ($from->[0]);
791   my $sw_idx = { map { (values %$_), 1 } @$switch_branch }; #there's one k/v per join-path
792
793   for my $j (@{$from}[1 .. $#$from]) {
794     my $jalias = $j->[0]{-alias};
795
796     if ($sw_idx->{$jalias}) {
797       my %attrs = %{$j->[0]};
798       delete $attrs{-join_type};
799       push @new_from, [
800         \%attrs,
801         @{$j}[ 1 .. $#$j ],
802       ];
803     }
804     else {
805       push @new_from, $j;
806     }
807   }
808
809   return \@new_from;
810 }
811
812 sub _find_join_path_to_node {
813   my ($self, $from, $target_alias) = @_;
814
815   # subqueries and other oddness are naturally not supported
816   return undef if (
817     ref $from ne 'ARRAY'
818       ||
819     ref $from->[0] ne 'HASH'
820       ||
821     ! defined $from->[0]{-alias}
822   );
823
824   # no path - the head is the alias
825   return [] if $from->[0]{-alias} eq $target_alias;
826
827   for my $i (1 .. $#$from) {
828     return $from->[$i][0]{-join_path} if ( ($from->[$i][0]{-alias}||'') eq $target_alias );
829   }
830
831   # something else went quite wrong
832   return undef;
833 }
834
835 sub _extract_order_criteria {
836   my ($self, $order_by, $sql_maker) = @_;
837
838   my $parser = sub {
839     my ($sql_maker, $order_by, $orig_quote_chars) = @_;
840
841     return scalar $sql_maker->_order_by_chunks ($order_by)
842       unless wantarray;
843
844     my ($lq, $rq, $sep) = map { quotemeta($_) } (
845       ($orig_quote_chars ? @$orig_quote_chars : $sql_maker->_quote_chars),
846       $sql_maker->name_sep
847     );
848
849     my @chunks;
850     for ($sql_maker->_order_by_chunks ($order_by) ) {
851       my $chunk = ref $_ ? [ @$_ ] : [ $_ ];
852       ($chunk->[0]) = $sql_maker->_split_order_chunk($chunk->[0]);
853
854       # order criteria may have come back pre-quoted (literals and whatnot)
855       # this is fragile, but the best we can currently do
856       $chunk->[0] =~ s/^ $lq (.+?) $rq $sep $lq (.+?) $rq $/"$1.$2"/xe
857         or $chunk->[0] =~ s/^ $lq (.+) $rq $/$1/x;
858
859       push @chunks, $chunk;
860     }
861
862     return @chunks;
863   };
864
865   if ($sql_maker) {
866     return $parser->($sql_maker, $order_by);
867   }
868   else {
869     $sql_maker = $self->sql_maker;
870
871     # pass these in to deal with literals coming from
872     # the user or the deep guts of prefetch
873     my $orig_quote_chars = [$sql_maker->_quote_chars];
874
875     local $sql_maker->{quote_char};
876     return $parser->($sql_maker, $order_by, $orig_quote_chars);
877   }
878 }
879
880 sub _order_by_is_stable {
881   my ($self, $ident, $order_by, $where) = @_;
882
883   my @cols = (
884     ( map { $_->[0] } $self->_extract_order_criteria($order_by) ),
885     ( $where ? keys %{ $self->_extract_fixed_condition_columns($where) } : () ),
886   ) or return 0;
887
888   my $colinfo = $self->_resolve_column_info($ident, \@cols);
889
890   return keys %$colinfo
891     ? $self->_columns_comprise_identifying_set( $colinfo,  \@cols )
892     : 0
893   ;
894 }
895
896 sub _columns_comprise_identifying_set {
897   my ($self, $colinfo, $columns) = @_;
898
899   my $cols_per_src;
900   $cols_per_src -> {$_->{-source_alias}} -> {$_->{-colname}} = $_
901     for grep { defined $_ } @{$colinfo}{@$columns};
902
903   for (values %$cols_per_src) {
904     my $src = (values %$_)[0]->{-result_source};
905     return 1 if $src->_identifying_column_set($_);
906   }
907
908   return 0;
909 }
910
911 # this is almost similar to _order_by_is_stable, except it takes
912 # a single rsrc, and will succeed only if the first portion of the order
913 # by is stable.
914 # returns that portion as a colinfo hashref on success
915 sub _extract_colinfo_of_stable_main_source_order_by_portion {
916   my ($self, $attrs) = @_;
917
918   my $nodes = $self->_find_join_path_to_node($attrs->{from}, $attrs->{alias});
919
920   return unless defined $nodes;
921
922   my @ord_cols = map
923     { $_->[0] }
924     ( $self->_extract_order_criteria($attrs->{order_by}) )
925   ;
926   return unless @ord_cols;
927
928   my $valid_aliases = { map { $_ => 1 } (
929     $attrs->{from}[0]{-alias},
930     map { values %$_ } @$nodes,
931   ) };
932
933   my $colinfos = $self->_resolve_column_info($attrs->{from});
934
935   my ($colinfos_to_return, $seen_main_src_cols);
936
937   for my $col (@ord_cols) {
938     # if order criteria is unresolvable - there is nothing we can do
939     my $colinfo = $colinfos->{$col} or last;
940
941     # if we reached the end of the allowed aliases - also nothing we can do
942     last unless $valid_aliases->{$colinfo->{-source_alias}};
943
944     $colinfos_to_return->{$col} = $colinfo;
945
946     $seen_main_src_cols->{$colinfo->{-colname}} = 1
947       if $colinfo->{-source_alias} eq $attrs->{alias};
948   }
949
950   # FIXME the condition may be singling out things on its own, so we
951   # conceivable could come back wi "stable-ordered by nothing"
952   # not confient enough in the parser yet, so punt for the time being
953   return unless $seen_main_src_cols;
954
955   my $main_src_fixed_cols_from_cond = [ $attrs->{where}
956     ? (
957       map
958       {
959         ( $colinfos->{$_} and $colinfos->{$_}{-source_alias} eq $attrs->{alias} )
960           ? $colinfos->{$_}{-colname}
961           : ()
962       }
963       keys %{ $self->_extract_fixed_condition_columns($attrs->{where}) }
964     )
965     : ()
966   ];
967
968   return $attrs->{result_source}->_identifying_column_set([
969     keys %$seen_main_src_cols,
970     @$main_src_fixed_cols_from_cond,
971   ]) ? $colinfos_to_return : ();
972 }
973
974 # Attempts to flatten a passed in SQLA condition as much as possible towards
975 # a plain hashref, *without* altering its semantics. Required by
976 # create/populate being able to extract definitive conditions from preexisting
977 # resultset {where} stacks
978 #
979 # FIXME - while relatively robust, this is still imperfect, one of the first
980 # things to tackle with DQ
981 sub _collapse_cond {
982   my ($self, $where, $where_is_anded_array) = @_;
983
984   my $fin;
985
986   if (! $where) {
987     return;
988   }
989   elsif ($where_is_anded_array or ref $where eq 'HASH') {
990
991     my @pairs;
992
993     my @pieces = $where_is_anded_array ? @$where : $where;
994     while (@pieces) {
995       my $chunk = shift @pieces;
996
997       if (ref $chunk eq 'HASH') {
998         for (sort keys %$chunk) {
999
1000           # Match SQLA 1.79 behavior
1001           if ($_ eq '') {
1002             is_literal_value($chunk->{$_})
1003               ? carp 'Hash-pairs consisting of an empty string with a literal are deprecated, use -and => [ $literal ] instead'
1004               : $self->throw_exception("Supplying an empty left hand side argument is not supported in hash-pairs")
1005             ;
1006           }
1007
1008           push @pairs, $_ => $chunk->{$_};
1009         }
1010       }
1011       elsif (ref $chunk eq 'ARRAY') {
1012         push @pairs, -or => $chunk
1013           if @$chunk;
1014       }
1015       elsif ( ! length ref $chunk) {
1016
1017         # Match SQLA 1.79 behavior
1018         $self->throw_exception("Supplying an empty left hand side argument is not supported in array-pairs")
1019           if $where_is_anded_array and (! defined $chunk or $chunk eq '');
1020
1021         push @pairs, $chunk, shift @pieces;
1022       }
1023       else {
1024         push @pairs, '', $chunk;
1025       }
1026     }
1027
1028     return unless @pairs;
1029
1030     my @conds = $self->_collapse_cond_unroll_pairs(\@pairs)
1031       or return;
1032
1033     # Consolidate various @conds back into something more compact
1034     for my $c (@conds) {
1035       if (ref $c ne 'HASH') {
1036         push @{$fin->{-and}}, $c;
1037       }
1038       else {
1039         for my $col (sort keys %$c) {
1040
1041           # consolidate all -and nodes
1042           if ($col =~ /^\-and$/i) {
1043             push @{$fin->{-and}},
1044               ref $c->{$col} eq 'ARRAY' ? @{$c->{$col}}
1045             : ref $c->{$col} eq 'HASH' ? %{$c->{$col}}
1046             : { $col => $c->{$col} }
1047             ;
1048           }
1049           elsif ($col =~ /^\-/) {
1050             push @{$fin->{-and}}, { $col => $c->{$col} };
1051           }
1052           elsif (exists $fin->{$col}) {
1053             $fin->{$col} = [ -and => map {
1054               (ref $_ eq 'ARRAY' and ($_->[0]||'') =~ /^\-and$/i )
1055                 ? @{$_}[1..$#$_]
1056                 : $_
1057               ;
1058             } ($fin->{$col}, $c->{$col}) ];
1059           }
1060           else {
1061             $fin->{$col} = $c->{$col};
1062           }
1063         }
1064       }
1065     }
1066   }
1067   elsif (ref $where eq 'ARRAY') {
1068     # we are always at top-level here, it is safe to dump empty *standalone* pieces
1069     my $fin_idx;
1070
1071     for (my $i = 0; $i <= $#$where; $i++ ) {
1072
1073       # Match SQLA 1.79 behavior
1074       $self->throw_exception(
1075         "Supplying an empty left hand side argument is not supported in array-pairs"
1076       ) if (! defined $where->[$i] or ! length $where->[$i]);
1077
1078       my $logic_mod = lc ( ($where->[$i] =~ /^(\-(?:and|or))$/i)[0] || '' );
1079
1080       if ($logic_mod) {
1081         $i++;
1082         $self->throw_exception("Unsupported top-level op/arg pair: [ $logic_mod => $where->[$i] ]")
1083           unless ref $where->[$i] eq 'HASH' or ref $where->[$i] eq 'ARRAY';
1084
1085         my $sub_elt = $self->_collapse_cond({ $logic_mod => $where->[$i] })
1086           or next;
1087
1088         my @keys = keys %$sub_elt;
1089         if ( @keys == 1 and $keys[0] !~ /^\-/ ) {
1090           $fin_idx->{ "COL_$keys[0]_" . serialize $sub_elt } = $sub_elt;
1091         }
1092         else {
1093           $fin_idx->{ "SER_" . serialize $sub_elt } = $sub_elt;
1094         }
1095       }
1096       elsif (! length ref $where->[$i] ) {
1097         my $sub_elt = $self->_collapse_cond({ @{$where}[$i, $i+1] })
1098           or next;
1099
1100         $fin_idx->{ "COL_$where->[$i]_" . serialize $sub_elt } = $sub_elt;
1101         $i++;
1102       }
1103       else {
1104         $fin_idx->{ "SER_" . serialize $where->[$i] } = $self->_collapse_cond( $where->[$i] ) || next;
1105       }
1106     }
1107
1108     if (! $fin_idx) {
1109       return;
1110     }
1111     elsif ( keys %$fin_idx == 1 ) {
1112       $fin = (values %$fin_idx)[0];
1113     }
1114     else {
1115       my @or;
1116
1117       # at this point everything is at most one level deep - unroll if needed
1118       for (sort keys %$fin_idx) {
1119         if ( ref $fin_idx->{$_} eq 'HASH' and keys %{$fin_idx->{$_}} == 1 ) {
1120           my ($l, $r) = %{$fin_idx->{$_}};
1121
1122           if (
1123             ref $r eq 'ARRAY'
1124               and
1125             (
1126               ( @$r == 1 and $l =~ /^\-and$/i )
1127                 or
1128               $l =~ /^\-or$/i
1129             )
1130           ) {
1131             push @or, @$r
1132           }
1133
1134           elsif (
1135             ref $r eq 'HASH'
1136               and
1137             keys %$r == 1
1138               and
1139             $l =~ /^\-(?:and|or)$/i
1140           ) {
1141             push @or, %$r;
1142           }
1143
1144           else {
1145             push @or, $l, $r;
1146           }
1147         }
1148         else {
1149           push @or, $fin_idx->{$_};
1150         }
1151       }
1152
1153       $fin->{-or} = \@or;
1154     }
1155   }
1156   else {
1157     # not a hash not an array
1158     $fin = { -and => [ $where ] };
1159   }
1160
1161   # unroll single-element -and's
1162   while (
1163     $fin->{-and}
1164       and
1165     @{$fin->{-and}} < 2
1166   ) {
1167     my $and = delete $fin->{-and};
1168     last if @$and == 0;
1169
1170     # at this point we have @$and == 1
1171     if (
1172       ref $and->[0] eq 'HASH'
1173         and
1174       ! grep { exists $fin->{$_} } keys %{$and->[0]}
1175     ) {
1176       $fin = {
1177         %$fin, %{$and->[0]}
1178       };
1179     }
1180     else {
1181       $fin->{-and} = $and;
1182       last;
1183     }
1184   }
1185
1186   # compress same-column conds found in $fin
1187   for my $col ( grep { $_ !~ /^\-/ } keys %$fin ) {
1188     next unless ref $fin->{$col} eq 'ARRAY' and ($fin->{$col}[0]||'') =~ /^\-and$/i;
1189     my $val_bag = { map {
1190       (! defined $_ )                          ? ( UNDEF => undef )
1191     : ( ! length ref $_ or is_plain_value $_ ) ? ( "VAL_$_" => $_ )
1192     : ( ( 'SER_' . serialize $_ ) => $_ )
1193     } @{$fin->{$col}}[1 .. $#{$fin->{$col}}] };
1194
1195     if (keys %$val_bag == 1 ) {
1196       ($fin->{$col}) = values %$val_bag;
1197     }
1198     else {
1199       $fin->{$col} = [ -and => map { $val_bag->{$_} } sort keys %$val_bag ];
1200     }
1201   }
1202
1203   return keys %$fin ? $fin : ();
1204 }
1205
1206 sub _collapse_cond_unroll_pairs {
1207   my ($self, $pairs) = @_;
1208
1209   my @conds;
1210
1211   while (@$pairs) {
1212     my ($lhs, $rhs) = splice @$pairs, 0, 2;
1213
1214     if ($lhs eq '') {
1215       push @conds, $self->_collapse_cond($rhs);
1216     }
1217     elsif ( $lhs =~ /^\-and$/i ) {
1218       push @conds, $self->_collapse_cond($rhs, (ref $rhs eq 'ARRAY'));
1219     }
1220     elsif ( $lhs =~ /^\-or$/i ) {
1221       push @conds, $self->_collapse_cond(
1222         (ref $rhs eq 'HASH') ? [ map { $_ => $rhs->{$_} } sort keys %$rhs ] : $rhs
1223       );
1224     }
1225     else {
1226       if (ref $rhs eq 'HASH' and ! keys %$rhs) {
1227         # FIXME - SQLA seems to be doing... nothing...?
1228       }
1229       # normalize top level -ident, for saner extract_fixed_condition_columns code
1230       elsif (ref $rhs eq 'HASH' and keys %$rhs == 1 and exists $rhs->{-ident}) {
1231         push @conds, { $lhs => { '=', $rhs } };
1232       }
1233       elsif (ref $rhs eq 'HASH' and keys %$rhs == 1 and exists $rhs->{-value} and is_plain_value $rhs->{-value}) {
1234         push @conds, { $lhs => $rhs->{-value} };
1235       }
1236       elsif (ref $rhs eq 'HASH' and keys %$rhs == 1 and exists $rhs->{'='}) {
1237         if ( length ref $rhs->{'='} and is_literal_value $rhs->{'='} ) {
1238           push @conds, { $lhs => $rhs };
1239         }
1240         else {
1241           for my $p ($self->_collapse_cond_unroll_pairs([ $lhs => $rhs->{'='} ])) {
1242
1243             # extra sanity check
1244             if (keys %$p > 1) {
1245               require Data::Dumper::Concise;
1246               local $Data::Dumper::Deepcopy = 1;
1247               $self->throw_exception(
1248                 "Internal error: unexpected collapse unroll:"
1249               . Data::Dumper::Concise::Dumper { in => { $lhs => $rhs }, out => $p }
1250               );
1251             }
1252
1253             my ($l, $r) = %$p;
1254
1255             push @conds, (
1256               ! length ref $r
1257                 or
1258               # the unroller recursion may return a '=' prepended value already
1259               ref $r eq 'HASH' and keys %$rhs == 1 and exists $rhs->{'='}
1260                 or
1261               is_plain_value($r)
1262             )
1263               ? { $l => $r }
1264               : { $l => { '=' => $r } }
1265             ;
1266           }
1267         }
1268       }
1269       elsif (ref $rhs eq 'ARRAY') {
1270         # some of these conditionals encounter multi-values - roll them out using
1271         # an unshift, which will cause extra looping in the while{} above
1272         if (! @$rhs ) {
1273           push @conds, { $lhs => [] };
1274         }
1275         elsif ( ($rhs->[0]||'') =~ /^\-(?:and|or)$/i ) {
1276           $self->throw_exception("Value modifier not followed by any values: $lhs => [ $rhs->[0] ] ")
1277             if  @$rhs == 1;
1278
1279           if( $rhs->[0] =~ /^\-and$/i ) {
1280             unshift @$pairs, map { $lhs => $_ } @{$rhs}[1..$#$rhs];
1281           }
1282           # if not an AND then it's an OR
1283           elsif(@$rhs == 2) {
1284             unshift @$pairs, $lhs => $rhs->[1];
1285           }
1286           else {
1287             push @conds, { $lhs => [ @{$rhs}[1..$#$rhs] ] };
1288           }
1289         }
1290         elsif (@$rhs == 1) {
1291           unshift @$pairs, $lhs => $rhs->[0];
1292         }
1293         else {
1294           push @conds, { $lhs => $rhs };
1295         }
1296       }
1297       # unroll func + { -value => ... }
1298       elsif (
1299         ref $rhs eq 'HASH'
1300           and
1301         ( my ($subop) = keys %$rhs ) == 1
1302           and
1303         length ref ((values %$rhs)[0])
1304           and
1305         my $vref = is_plain_value( (values %$rhs)[0] )
1306       ) {
1307         push @conds, { $lhs => { $subop => $$vref } }
1308       }
1309       else {
1310         push @conds, { $lhs => $rhs };
1311       }
1312     }
1313   }
1314
1315   return @conds;
1316 }
1317
1318 # Analyzes a given condition and attempts to extract all columns
1319 # with a definitive fixed-condition criteria. Returns a hashref
1320 # of k/v pairs suitable to be passed to set_columns(), with a
1321 # MAJOR CAVEAT - multi-value (contradictory) equalities are still
1322 # represented as a reference to the UNRESOVABLE_CONDITION constant
1323 # The reason we do this is that some codepaths only care about the
1324 # codition being stable, as opposed to actually making sense
1325 #
1326 # The normal mode is used to figure out if a resultset is constrained
1327 # to a column which is part of a unique constraint, which in turn
1328 # allows us to better predict how ordering will behave etc.
1329 #
1330 # With the optional "consider_nulls" boolean argument, the function
1331 # is instead used to infer inambiguous values from conditions
1332 # (e.g. the inheritance of resultset conditions on new_result)
1333 #
1334 sub _extract_fixed_condition_columns {
1335   my ($self, $where, $consider_nulls) = @_;
1336   my $where_hash = $self->_collapse_cond($_[1]);
1337
1338   my $res = {};
1339   my ($c, $v);
1340   for $c (keys %$where_hash) {
1341     my $vals;
1342
1343     if (!defined ($v = $where_hash->{$c}) ) {
1344       $vals->{UNDEF} = $v if $consider_nulls
1345     }
1346     elsif (
1347       ref $v eq 'HASH'
1348         and
1349       keys %$v == 1
1350     ) {
1351       if (exists $v->{-value}) {
1352         if (defined $v->{-value}) {
1353           $vals->{"VAL_$v->{-value}"} = $v->{-value}
1354         }
1355         elsif( $consider_nulls ) {
1356           $vals->{UNDEF} = $v->{-value};
1357         }
1358       }
1359       # do not need to check for plain values - _collapse_cond did it for us
1360       elsif(
1361         length ref $v->{'='}
1362           and
1363         (
1364           ( ref $v->{'='} eq 'HASH' and keys %{$v->{'='}} == 1 and exists $v->{'='}{-ident} )
1365             or
1366           is_literal_value($v->{'='})
1367         )
1368        ) {
1369         $vals->{ 'SER_' . serialize $v->{'='} } = $v->{'='};
1370       }
1371     }
1372     elsif (
1373       ! length ref $v
1374         or
1375       is_plain_value ($v)
1376     ) {
1377       $vals->{"VAL_$v"} = $v;
1378     }
1379     elsif (ref $v eq 'ARRAY' and ($v->[0]||'') eq '-and') {
1380       for ( @{$v}[1..$#$v] ) {
1381         my $subval = $self->_extract_fixed_condition_columns({ $c => $_ }, 'consider nulls');  # always fish nulls out on recursion
1382         next unless exists $subval->{$c};  # didn't find anything
1383         $vals->{
1384           ! defined $subval->{$c}                                        ? 'UNDEF'
1385         : ( ! length ref $subval->{$c} or is_plain_value $subval->{$c} ) ? "VAL_$subval->{$c}"
1386         : ( 'SER_' . serialize $subval->{$c} )
1387         } = $subval->{$c};
1388       }
1389     }
1390
1391     if (keys %$vals == 1) {
1392       ($res->{$c}) = (values %$vals)
1393         unless !$consider_nulls and exists $vals->{UNDEF};
1394     }
1395     elsif (keys %$vals > 1) {
1396       $res->{$c} = UNRESOLVABLE_CONDITION;
1397     }
1398   }
1399
1400   $res;
1401 }
1402
1403 1;