X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FDBIx%2FClass%2FStorage%2FDBI%2Fmysql.pm;h=53b8e16ae409a890c32804f215acd66a7ff3a5bd;hb=5fd73721c5877a68d3ca0746e27f52701b57790d;hp=2cb4be974ff01cb367158fa799a91c103a3a7498;hpb=613f65e5493254510c8201119165bcb55291b516;p=dbsrgits%2FDBIx-Class-Historic.git diff --git a/lib/DBIx/Class/Storage/DBI/mysql.pm b/lib/DBIx/Class/Storage/DBI/mysql.pm index 2cb4be9..53b8e16 100644 --- a/lib/DBIx/Class/Storage/DBI/mysql.pm +++ b/lib/DBIx/Class/Storage/DBI/mysql.pm @@ -3,9 +3,9 @@ package DBIx::Class::Storage::DBI::mysql; use strict; use warnings; -use base qw/DBIx::Class::Storage::DBI/; +use base qw/DBIx::Class::Storage::DBI::MultiColumnIn/; -# __PACKAGE__->load_components(qw/PK::Auto/); +__PACKAGE__->sql_maker_class('DBIx::Class::SQLAHacks::MySQL'); sub with_deferred_fk_checks { my ($self, $sub) = @_; @@ -52,11 +52,24 @@ sub lag_behind_master { } # MySql can not do subquery update/deletes, only way is slow per-row operations. -# This assumes you have proper privilege separation and use innodb. -sub subq_update_delete { +# This assumes you have set proper transaction isolation and use innodb. +sub _subq_update_delete { return shift->_per_row_update_delete (@_); } +# MySql chokes on things like: +# COUNT(*) FROM (SELECT tab1.col, tab2.col FROM tab1 JOIN tab2 ... ) +# claiming that col is a duplicate column (it loses the table specifiers by +# the time it gets to the *). Thus for any subquery count we select only the +# primary keys of the main table in the inner query. This hopefully still +# hits the indexes and keeps mysql happy. +# (mysql does not care if the SELECT and the GROUP BY match) +sub _subq_count_select { + my ($self, $source, $rs_attrs) = @_; + my @pcols = map { join '.', $rs_attrs->{alias}, $_ } ($source->primary_columns); + return @pcols ? \@pcols : [ 1 ]; +} + 1; =head1 NAME