Fix Top tests, make extra col selector order consistent
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / SQLAHacks.pm
1 package # Hide from PAUSE
2   DBIx::Class::SQLAHacks;
3
4 # This module is a subclass of SQL::Abstract::Limit and includes a number
5 # of DBIC-specific workarounds, not yet suitable for inclusion into the
6 # SQLA core
7
8 use base qw/SQL::Abstract::Limit/;
9 use strict;
10 use warnings;
11 use Carp::Clan qw/^DBIx::Class|^SQL::Abstract/;
12 use Sub::Name();
13
14 BEGIN {
15   # reinstall the carp()/croak() functions imported into SQL::Abstract
16   # as Carp and Carp::Clan do not like each other much
17   no warnings qw/redefine/;
18   no strict qw/refs/;
19   for my $f (qw/carp croak/) {
20
21     my $orig = \&{"SQL::Abstract::$f"};
22     *{"SQL::Abstract::$f"} = Sub::Name::subname "SQL::Abstract::$f" =>
23       sub {
24         if (Carp::longmess() =~ /DBIx::Class::SQLAHacks::[\w]+ .+? called \s at/x) {
25           __PACKAGE__->can($f)->(@_);
26         }
27         else {
28           goto $orig;
29         }
30       };
31   }
32 }
33
34
35 # Tries to determine limit dialect.
36 #
37 sub new {
38   my $self = shift->SUPER::new(@_);
39
40   # This prevents the caching of $dbh in S::A::L, I believe
41   # If limit_dialect is a ref (like a $dbh), go ahead and replace
42   #   it with what it resolves to:
43   $self->{limit_dialect} = $self->_find_syntax($self->{limit_dialect})
44     if ref $self->{limit_dialect};
45
46   $self;
47 }
48
49 # !!! THIS IS ALSO HORRIFIC !!! /me ashamed
50 #
51 # generate inner/outer select lists for various limit dialects
52 # which result in one or more subqueries (e.g. RNO, Top, RowNum)
53 # Any non-root-table columns need to have their table qualifier
54 # turned into a column alias (otherwise names in subqueries clash
55 # and/or lose their source table)
56 #
57 # returns inner/outer strings of SQL QUOTED selectors with aliases
58 # (to be used in whatever select statement), and an alias index hashref
59 # of QUOTED SEL => QUOTED ALIAS pairs (to maybe be used for string-subst
60 # higher up)
61 #
62 # If the $scan_order option is supplied, it signals that the limit dialect
63 # needs to order the outer side of the query, which in turn means that the
64 # inner select needs to bring out columns used in implicit (non-selected)
65 # orders, and the order condition itself needs to be realiased to the proper
66 # names in the outer query.
67 #
68 # In this case ($scan_order os true) we also return a hashref (order doesn't
69 # matter) of QUOTED EXTRA-SEL => QUOTED ALIAS pairs, which is a list of extra
70 # selectors that do *not* exist in the original select list
71
72 sub _subqueried_limit_attrs {
73   my ($self, $rs_attrs, $scan_order) = @_;
74
75   croak 'Limit dialect implementation usable only in the context of DBIC (missing $rs_attrs)'
76     unless ref ($rs_attrs) eq 'HASH';
77
78   my ($re_sep, $re_alias) = map { quotemeta $_ } (
79     $self->name_sep || '.',
80     $rs_attrs->{alias},
81   );
82
83   # correlate select and as, build selection index
84   my (@sel, $in_sel_index);
85   for my $i (0 .. $#{$rs_attrs->{select}}) {
86
87     my $s = $rs_attrs->{select}[$i];
88     my $sql_sel = $self->_recurse_fields ($s);
89     my $sql_alias = (ref $s) eq 'HASH' ? $s->{-as} : undef;
90
91
92     push @sel, {
93       sql => $sql_sel,
94       unquoted_sql => do { local $self->{quote_char}; $self->_recurse_fields ($s) },
95       as =>
96         $sql_alias
97           ||
98         $rs_attrs->{as}[$i]
99           ||
100         croak "Select argument $i ($s) without corresponding 'as'"
101       ,
102     };
103
104     $in_sel_index->{$sql_sel}++;
105     $in_sel_index->{$self->_quote ($sql_alias)}++ if $sql_alias;
106
107 # this *may* turn out to be necessary, not sure yet
108 #    my ($sql_unqualified_sel) = $sql_sel =~ / $re_sep (.+) $/x
109 #      if ! ref $s;
110 #    $in_sel_index->{$sql_unqualified_sel}++;
111   }
112
113
114   # re-alias and remove any name separators from aliases,
115   # unless we are dealing with the current source alias
116   # (which will transcend the subqueries as it is necessary
117   # for possible further chaining)
118   my (@in_sel, @out_sel, %renamed);
119   for my $node (@sel) {
120     if (List::Util::first { $_ =~ / (?<! $re_alias ) $re_sep /x } ($node->{as}, $node->{unquoted_sql}) )  {
121       $node->{as} =~ s/ $re_sep /__/xg;
122       my $quoted_as = $self->_quote($node->{as});
123       push @in_sel, sprintf '%s AS %s', $node->{sql}, $quoted_as;
124       push @out_sel, $quoted_as;
125       $renamed{$node->{sql}} = $quoted_as;
126     }
127     else {
128       push @in_sel, $node->{sql};
129       push @out_sel, $self->_quote ($node->{as});
130     }
131   }
132
133   my %extra_order_sel;
134   if ($scan_order) {
135     for my $chunk ($self->_order_by_chunks ($rs_attrs->{order_by})) {
136       # order with bind
137       $chunk = $chunk->[0] if (ref $chunk) eq 'ARRAY';
138       $chunk =~ s/\s+ (?: ASC|DESC ) \s* $//ix;
139
140       next if $in_sel_index->{$chunk};
141
142       $extra_order_sel{$chunk} ||= $self->_quote (
143         '__ORDER_BY_' . scalar keys %extra_order_sel
144       );
145     }
146   }
147   return (
148     (map { join (', ', @$_ ) } (
149       \@in_sel,
150       \@out_sel)
151     ),
152     \%renamed,
153     keys %extra_order_sel ? \%extra_order_sel : (),
154   );
155 }
156
157 # ANSI standard Limit/Offset implementation. DB2 and MSSQL >= 2005 use this
158 sub _RowNumberOver {
159   my ($self, $sql, $rs_attrs, $rows, $offset ) = @_;
160
161   # mangle the input sql as we will be replacing the selector
162   $sql =~ s/^ \s* SELECT \s+ .+? \s+ (?= \b FROM \b )//ix
163     or croak "Unrecognizable SELECT: $sql";
164
165   # get selectors, and scan the order_by (if any)
166   my ($in_sel, $out_sel, $alias_map, $extra_order_sel) = $self->_subqueried_limit_attrs (
167     $rs_attrs, 'scan_order_by',
168   );
169
170   # make up an order if none exists
171   my $requested_order = (delete $rs_attrs->{order_by}) || $self->_rno_default_order;
172   my $rno_ord = $self->_order_by ($requested_order);
173
174   # this is the order supplement magic
175   my $mid_sel = $out_sel;
176   if ($extra_order_sel) {
177     for my $extra_col (sort
178       { $extra_order_sel->{$a} cmp $extra_order_sel->{$b} }
179       keys %$extra_order_sel
180     ) {
181       $in_sel .= sprintf (', %s AS %s',
182         $extra_col,
183         $extra_order_sel->{$extra_col},
184       );
185
186       $mid_sel .= ', ' . $extra_order_sel->{$extra_col};
187     }
188   }
189
190   # and this is order re-alias magic
191   for ($extra_order_sel, $alias_map) {
192     for my $col (keys %$_) {
193       my $re_col = quotemeta ($col);
194       $rno_ord =~ s/$re_col/$_->{$col}/;
195     }
196   }
197
198   # whatever is left of the order_by (only where is processed at this point)
199   my $group_having = $self->_parse_rs_attrs($rs_attrs);
200
201   my $qalias = $self->_quote ($rs_attrs->{alias});
202   my $idx_name = $self->_quote ('rno__row__index');
203
204   $sql = sprintf (<<EOS, $offset + 1, $offset + $rows, );
205
206 SELECT $out_sel FROM (
207   SELECT $mid_sel, ROW_NUMBER() OVER( $rno_ord ) AS $idx_name FROM (
208     SELECT $in_sel ${sql}${group_having}
209   ) $qalias
210 ) $qalias WHERE $idx_name BETWEEN %d AND %d
211
212 EOS
213
214   $sql =~ s/\s*\n\s*/ /g;   # easier to read in the debugger
215   return $sql;
216 }
217
218 # some databases are happy with OVER (), some need OVER (ORDER BY (SELECT (1)) )
219 sub _rno_default_order {
220   return undef;
221 }
222
223 # Informix specific limit, almost like LIMIT/OFFSET
224 sub _SkipFirst {
225   my ($self, $sql, $rs_attrs, $rows, $offset) = @_;
226
227   $sql =~ s/^ \s* SELECT \s+ //ix
228     or croak "Unrecognizable SELECT: $sql";
229
230   return sprintf ('SELECT %s%s%s%s',
231     $offset
232       ? sprintf ('SKIP %d ', $offset)
233       : ''
234     ,
235     sprintf ('FIRST %d ', $rows),
236     $sql,
237     $self->_parse_rs_attrs ($rs_attrs),
238   );
239 }
240
241 # Firebird specific limit, reverse of _SkipFirst for Informix
242 sub _FirstSkip {
243   my ($self, $sql, $rs_attrs, $rows, $offset) = @_;
244
245   $sql =~ s/^ \s* SELECT \s+ //ix
246     or croak "Unrecognizable SELECT: $sql";
247
248   return sprintf ('SELECT %s%s%s%s',
249     sprintf ('FIRST %d ', $rows),
250     $offset
251       ? sprintf ('SKIP %d ', $offset)
252       : ''
253     ,
254     $sql,
255     $self->_parse_rs_attrs ($rs_attrs),
256   );
257 }
258
259 # WhOracle limits
260 sub _RowNum {
261   my ( $self, $sql, $rs_attrs, $rows, $offset ) = @_;
262
263   # mangle the input sql as we will be replacing the selector
264   $sql =~ s/^ \s* SELECT \s+ .+? \s+ (?= \b FROM \b )//ix
265     or croak "Unrecognizable SELECT: $sql";
266
267   my ($insel, $outsel) = $self->_subqueried_limit_attrs ($rs_attrs);
268
269   my $qalias = $self->_quote ($rs_attrs->{alias});
270   my $idx_name = $self->_quote ('rownum__index');
271   my $order_group_having = $self->_parse_rs_attrs($rs_attrs);
272
273   $sql = sprintf (<<EOS, $offset + 1, $offset + $rows, );
274
275 SELECT $outsel FROM (
276   SELECT $outsel, ROWNUM $idx_name FROM (
277     SELECT $insel ${sql}${order_group_having}
278   ) $qalias
279 ) $qalias WHERE $idx_name BETWEEN %d AND %d
280
281 EOS
282
283   $sql =~ s/\s*\n\s*/ /g;   # easier to read in the debugger
284   return $sql;
285 }
286
287 # Crappy Top based Limit/Offset support. Legacy for MSSQL < 2005
288 sub _Top {
289   my ( $self, $sql, $rs_attrs, $rows, $offset ) = @_;
290
291   # mangle the input sql as we will be replacing the selector
292   $sql =~ s/^ \s* SELECT \s+ .+? \s+ (?= \b FROM \b )//ix
293     or croak "Unrecognizable SELECT: $sql";
294
295   # get selectors
296   my ($in_sel, $out_sel, $alias_map, $extra_order_sel)
297     = $self->_subqueried_limit_attrs ($rs_attrs, 'outer_order_by');
298
299   my $requested_order = delete $rs_attrs->{order_by};
300
301   my $order_by_requested = $self->_order_by ($requested_order);
302
303   # make up an order unless supplied
304   my $inner_order = ($order_by_requested
305     ? $requested_order
306     : [ map
307       { join ('', $rs_attrs->{alias}, $self->{name_sep}||'.', $_ ) }
308       ( $rs_attrs->{_rsroot_source_handle}->resolve->_pri_cols )
309     ]
310   );
311
312   my ($order_by_inner, $order_by_reversed);
313
314   # localise as we already have all the bind values we need
315   {
316     local $self->{order_bind};
317     $order_by_inner = $self->_order_by ($inner_order);
318
319     my @out_chunks;
320     for my $ch ($self->_order_by_chunks ($inner_order)) {
321       $ch = $ch->[0] if ref $ch eq 'ARRAY';
322
323       $ch =~ s/\s+ ( ASC|DESC ) \s* $//ix;
324       my $dir = uc ($1||'ASC');
325
326       push @out_chunks, \join (' ', $ch, $dir eq 'ASC' ? 'DESC' : 'ASC' );
327     }
328
329     $order_by_reversed = $self->_order_by (\@out_chunks);
330   }
331
332   # this is the order supplement magic
333   my $mid_sel = $out_sel;
334   if ($extra_order_sel) {
335     for my $extra_col (sort
336       { $extra_order_sel->{$a} cmp $extra_order_sel->{$b} }
337       keys %$extra_order_sel
338     ) {
339       $in_sel .= sprintf (', %s AS %s',
340         $extra_col,
341         $extra_order_sel->{$extra_col},
342       );
343
344       $mid_sel .= ', ' . $extra_order_sel->{$extra_col};
345     }
346   }
347
348   # and this is order re-alias magic
349   for my $map ($extra_order_sel, $alias_map) {
350     for my $col (keys %$map) {
351       my $re_col = quotemeta ($col);
352       $_ =~ s/$re_col/$map->{$col}/
353         for ($order_by_reversed, $order_by_requested);
354     }
355   }
356
357   # generate the rest of the sql
358   my $grpby_having = $self->_parse_rs_attrs ($rs_attrs);
359
360   my $quoted_rs_alias = $self->_quote ($rs_attrs->{alias});
361
362   $sql = sprintf ('SELECT TOP %d %s %s %s %s',
363     $rows + ($offset||0),
364     $in_sel,
365     $sql,
366     $grpby_having,
367     $order_by_inner,
368   );
369
370   $sql = sprintf ('SELECT TOP %d %s FROM ( %s ) %s %s',
371     $rows,
372     $mid_sel,
373     $sql,
374     $quoted_rs_alias,
375     $order_by_reversed,
376   ) if $offset;
377
378   $sql = sprintf ('SELECT TOP %d %s FROM ( %s ) %s %s',
379     $rows,
380     $out_sel,
381     $sql,
382     $quoted_rs_alias,
383     $order_by_requested,
384   ) if ($order_by_requested || ($mid_sel ne $out_sel));
385
386   return $sql;
387 }
388
389
390 # While we're at it, this should make LIMIT queries more efficient,
391 #  without digging into things too deeply
392 sub _find_syntax {
393   my ($self, $syntax) = @_;
394   return $self->{_cached_syntax} ||= $self->SUPER::_find_syntax($syntax);
395 }
396
397 # Quotes table names, handles "limit" dialects (e.g. where rownum between x and
398 # y)
399 sub select {
400   my ($self, $table, $fields, $where, $rs_attrs, @rest) = @_;
401
402   $self->{"${_}_bind"} = [] for (qw/having from order/);
403
404   if (not ref($table) or ref($table) eq 'SCALAR') {
405     $table = $self->_quote($table);
406   }
407
408   local $self->{rownum_hack_count} = 1
409     if (defined $rest[0] && $self->{limit_dialect} eq 'RowNum');
410   @rest = (-1) unless defined $rest[0];
411   croak "LIMIT 0 Does Not Compute" if $rest[0] == 0;
412     # and anyway, SQL::Abstract::Limit will cause a barf if we don't first
413
414   my ($sql, @where_bind) = $self->SUPER::select(
415     $table, $self->_recurse_fields($fields), $where, $rs_attrs, @rest
416   );
417   return wantarray ? ($sql, @{$self->{from_bind}}, @where_bind, @{$self->{having_bind}}, @{$self->{order_bind}} ) : $sql;
418 }
419
420 # Quotes table names, and handles default inserts
421 sub insert {
422   my $self = shift;
423   my $table = shift;
424   $table = $self->_quote($table);
425
426   # SQLA will emit INSERT INTO $table ( ) VALUES ( )
427   # which is sadly understood only by MySQL. Change default behavior here,
428   # until SQLA2 comes with proper dialect support
429   if (! $_[0] or (ref $_[0] eq 'HASH' and !keys %{$_[0]} ) ) {
430     my $sql = "INSERT INTO ${table} DEFAULT VALUES";
431
432     if (my $ret = ($_[1]||{})->{returning} ) {
433       $sql .= $self->_insert_returning ($ret);
434     }
435
436     return $sql;
437   }
438
439   $self->SUPER::insert($table, @_);
440 }
441
442 # Just quotes table names.
443 sub update {
444   my $self = shift;
445   my $table = shift;
446   $table = $self->_quote($table);
447   $self->SUPER::update($table, @_);
448 }
449
450 # Just quotes table names.
451 sub delete {
452   my $self = shift;
453   my $table = shift;
454   $table = $self->_quote($table);
455   $self->SUPER::delete($table, @_);
456 }
457
458 sub _emulate_limit {
459   my $self = shift;
460   # my ( $syntax, $sql, $order, $rows, $offset ) = @_;
461
462   if ($_[3] == -1) {
463     return $_[1] . $self->_parse_rs_attrs($_[2]);
464   } else {
465     return $self->SUPER::_emulate_limit(@_);
466   }
467 }
468
469 sub _recurse_fields {
470   my ($self, $fields) = @_;
471   my $ref = ref $fields;
472   return $self->_quote($fields) unless $ref;
473   return $$fields if $ref eq 'SCALAR';
474
475   if ($ref eq 'ARRAY') {
476     return join(', ', map { $self->_recurse_fields($_) } @$fields);
477   }
478   elsif ($ref eq 'HASH') {
479     my %hash = %$fields;  # shallow copy
480
481     my $as = delete $hash{-as};   # if supplied
482
483     my ($func, $args, @toomany) = %hash;
484
485     # there should be only one pair
486     if (@toomany) {
487       croak "Malformed select argument - too many keys in hash: " . join (',', keys %$fields );
488     }
489
490     if (lc ($func) eq 'distinct' && ref $args eq 'ARRAY' && @$args > 1) {
491       croak (
492         'The select => { distinct => ... } syntax is not supported for multiple columns.'
493        .' Instead please use { group_by => [ qw/' . (join ' ', @$args) . '/ ] }'
494        .' or { select => [ qw/' . (join ' ', @$args) . '/ ], distinct => 1 }'
495       );
496     }
497
498     my $select = sprintf ('%s( %s )%s',
499       $self->_sqlcase($func),
500       $self->_recurse_fields($args),
501       $as
502         ? sprintf (' %s %s', $self->_sqlcase('as'), $self->_quote ($as) )
503         : ''
504     );
505
506     return $select;
507   }
508   # Is the second check absolutely necessary?
509   elsif ( $ref eq 'REF' and ref($$fields) eq 'ARRAY' ) {
510     return $self->_fold_sqlbind( $fields );
511   }
512   else {
513     croak($ref . qq{ unexpected in _recurse_fields()})
514   }
515 }
516
517 my $for_syntax = {
518   update => 'FOR UPDATE',
519   shared => 'FOR SHARE',
520 };
521
522 # this used to be a part of _order_by but is broken out for clarity.
523 # What we have been doing forever is hijacking the $order arg of
524 # SQLA::select to pass in arbitrary pieces of data (first the group_by,
525 # then pretty much the entire resultset attr-hash, as more and more
526 # things in the SQLA space need to have mopre info about the $rs they
527 # create SQL for. The alternative would be to keep expanding the
528 # signature of _select with more and more positional parameters, which
529 # is just gross. All hail SQLA2!
530 sub _parse_rs_attrs {
531   my ($self, $arg) = @_;
532
533   my $sql = '';
534
535   if (my $g = $self->_recurse_fields($arg->{group_by}, { no_rownum_hack => 1 }) ) {
536     $sql .= $self->_sqlcase(' group by ') . $g;
537   }
538
539   if (defined $arg->{having}) {
540     my ($frag, @bind) = $self->_recurse_where($arg->{having});
541     push(@{$self->{having_bind}}, @bind);
542     $sql .= $self->_sqlcase(' having ') . $frag;
543   }
544
545   if (defined $arg->{order_by}) {
546     $sql .= $self->_order_by ($arg->{order_by});
547   }
548
549   if (my $for = $arg->{for}) {
550     $sql .= " $for_syntax->{$for}" if $for_syntax->{$for};
551   }
552
553   return $sql;
554 }
555
556 sub _order_by {
557   my ($self, $arg) = @_;
558
559   # check that we are not called in legacy mode (order_by as 4th argument)
560   if (ref $arg eq 'HASH' and not grep { $_ =~ /^-(?:desc|asc)/i } keys %$arg ) {
561     return $self->_parse_rs_attrs ($arg);
562   }
563   else {
564     my ($sql, @bind) = $self->SUPER::_order_by ($arg);
565     push @{$self->{order_bind}}, @bind;
566     return $sql;
567   }
568 }
569
570 sub _order_directions {
571   my ($self, $order) = @_;
572
573   # strip bind values - none of the current _order_directions users support them
574   return $self->SUPER::_order_directions( [ map
575     { ref $_ ? $_->[0] : $_ }
576     $self->_order_by_chunks ($order)
577   ]);
578 }
579
580 sub _table {
581   my ($self, $from) = @_;
582   if (ref $from eq 'ARRAY') {
583     return $self->_recurse_from(@$from);
584   } elsif (ref $from eq 'HASH') {
585     return $self->_make_as($from);
586   } else {
587     return $from; # would love to quote here but _table ends up getting called
588                   # twice during an ->select without a limit clause due to
589                   # the way S::A::Limit->select works. should maybe consider
590                   # bypassing this and doing S::A::select($self, ...) in
591                   # our select method above. meantime, quoting shims have
592                   # been added to select/insert/update/delete here
593   }
594 }
595
596 sub _generate_join_clause {
597     my ($self, $join_type) = @_;
598
599     return sprintf ('%s JOIN ',
600       $join_type ?  ' ' . uc($join_type) : ''
601     );
602 }
603
604 sub _recurse_from {
605   my ($self, $from, @join) = @_;
606   my @sqlf;
607   push(@sqlf, $self->_make_as($from));
608   foreach my $j (@join) {
609     my ($to, $on) = @$j;
610
611
612     # check whether a join type exists
613     my $to_jt = ref($to) eq 'ARRAY' ? $to->[0] : $to;
614     my $join_type;
615     if (ref($to_jt) eq 'HASH' and defined($to_jt->{-join_type})) {
616       $join_type = $to_jt->{-join_type};
617       $join_type =~ s/^\s+ | \s+$//xg;
618     }
619
620     $join_type = $self->{_default_jointype} if not defined $join_type;
621
622     push @sqlf, $self->_generate_join_clause( $join_type );
623
624     if (ref $to eq 'ARRAY') {
625       push(@sqlf, '(', $self->_recurse_from(@$to), ')');
626     } else {
627       push(@sqlf, $self->_make_as($to));
628     }
629     push(@sqlf, ' ON ', $self->_join_condition($on));
630   }
631   return join('', @sqlf);
632 }
633
634 sub _fold_sqlbind {
635   my ($self, $sqlbind) = @_;
636
637   my @sqlbind = @$$sqlbind; # copy
638   my $sql = shift @sqlbind;
639   push @{$self->{from_bind}}, @sqlbind;
640
641   return $sql;
642 }
643
644 sub _make_as {
645   my ($self, $from) = @_;
646   return join(' ', map { (ref $_ eq 'SCALAR' ? $$_
647                         : ref $_ eq 'REF'    ? $self->_fold_sqlbind($_)
648                         : $self->_quote($_))
649                        } reverse each %{$self->_skip_options($from)});
650 }
651
652 sub _skip_options {
653   my ($self, $hash) = @_;
654   my $clean_hash = {};
655   $clean_hash->{$_} = $hash->{$_}
656     for grep {!/^-/} keys %$hash;
657   return $clean_hash;
658 }
659
660 sub _join_condition {
661   my ($self, $cond) = @_;
662   if (ref $cond eq 'HASH') {
663     my %j;
664     for (keys %$cond) {
665       my $v = $cond->{$_};
666       if (ref $v) {
667         croak (ref($v) . qq{ reference arguments are not supported in JOINS - try using \"..." instead'})
668             if ref($v) ne 'SCALAR';
669         $j{$_} = $v;
670       }
671       else {
672         my $x = '= '.$self->_quote($v); $j{$_} = \$x;
673       }
674     };
675     return scalar($self->_recurse_where(\%j));
676   } elsif (ref $cond eq 'ARRAY') {
677     return join(' OR ', map { $self->_join_condition($_) } @$cond);
678   } else {
679     die "Can't handle this yet!";
680   }
681 }
682
683 sub limit_dialect {
684     my $self = shift;
685     if (@_) {
686       $self->{limit_dialect} = shift;
687       undef $self->{_cached_syntax};
688     }
689     return $self->{limit_dialect};
690 }
691
692 # Set to an array-ref to specify separate left and right quotes for table names.
693 # A single scalar is equivalen to [ $char, $char ]
694 sub quote_char {
695     my $self = shift;
696     $self->{quote_char} = shift if @_;
697     return $self->{quote_char};
698 }
699
700 # Character separating quoted table names.
701 sub name_sep {
702     my $self = shift;
703     $self->{name_sep} = shift if @_;
704     return $self->{name_sep};
705 }
706
707 1;