Fix oversight in subqueried MySQL update/delete
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / Storage / DBI / mysql.pm
CommitLineData
843f8ecd 1package DBIx::Class::Storage::DBI::mysql;
2
3use strict;
4use warnings;
5
be64931c 6use base qw/DBIx::Class::Storage::DBI/;
843f8ecd 7
45150bc4 8use namespace::clean;
9
d5dedbd6 10__PACKAGE__->sql_maker_class('DBIx::Class::SQLMaker::MySQL');
6a247f33 11__PACKAGE__->sql_limit_dialect ('LimitXY');
2b8cc2f2 12__PACKAGE__->sql_quote_char ('`');
843f8ecd 13
be64931c 14__PACKAGE__->_use_multicolumn_in (1);
15
e96a93df 16sub with_deferred_fk_checks {
17 my ($self, $sub) = @_;
18
5cf7285e 19 $self->_do_query('SET FOREIGN_KEY_CHECKS = 0');
e96a93df 20 $sub->();
5cf7285e 21 $self->_do_query('SET FOREIGN_KEY_CHECKS = 1');
e96a93df 22}
23
97a0a148 24sub connect_call_set_strict_mode {
0fde80d9 25 my $self = shift;
97a0a148 26
27 # the @@sql_mode puts back what was previously set on the session handle
28 $self->_do_query(q|SET SQL_MODE = CONCAT('ANSI,TRADITIONAL,ONLY_FULL_GROUP_BY,', @@sql_mode)|);
0fde80d9 29 $self->_do_query(q|SET SQL_AUTO_IS_NULL = 0|);
30}
31
d4f16b21 32sub _dbh_last_insert_id {
33 my ($self, $dbh, $source, $col) = @_;
34 $dbh->{mysql_insertid};
843f8ecd 35}
36
45150bc4 37sub _prep_for_execute {
38 my $self = shift;
39 #(my $op, $ident, $args) = @_;
40
41 # Only update and delete need special double-subquery treatment
42 # Insert referencing the same table (i.e. SELECT MAX(id) + 1) seems
43 # to work just fine on MySQL
44 return $self->next::method(@_) if ( $_[0] eq 'select' or $_[0] eq 'insert' );
45
46
47 # FIXME FIXME FIXME - this is a terrible, gross, incomplete hack
48 # it should be trivial for mst to port this to DQ (and a good
49 # exercise as well, since we do not yet have such wide tree walking
50 # in place). For the time being this will work in limited cases,
51 # mainly complex update/delete, which is really all we want it for
52 # currently (allows us to fix some bugs without breaking MySQL in
53 # the process, and is also crucial for Shadow to be usable)
54
55 # extract the source name, construct modification indicator re
56 my $sm = $self->sql_maker;
57
58 my $target_name = $_[1]->from;
59
60 if (ref $target_name) {
61 if (
62 ref $target_name eq 'SCALAR'
63 and
64 $$target_name =~ /^ (?:
65 \` ( [^`]+ ) \` #`
66 | ( [\w\-]+ )
67 ) $/x
68 ) {
69 # this is just a plain-ish name, which has been literal-ed for
70 # whatever reason
d77ee505 71 $target_name = (defined $1) ? $1 : $2;
45150bc4 72 }
73 else {
74 # this is something very complex, perhaps a custom result source or whatnot
75 # can't deal with it
76 undef $target_name;
77 }
78 }
79
80 local $sm->{_modification_target_referenced_re} =
f4fdfd69 81 qr/ (?<!DELETE) [\s\)] (?: FROM | JOIN ) \s (?: \` \Q$target_name\E \` | \Q$target_name\E ) [\s\(] /xi
45150bc4 82 if $target_name;
83
84 $self->next::method(@_);
85}
86
f98120e4 87# here may seem like an odd place to override, but this is the first
88# method called after we are connected *and* the driver is determined
89# ($self is reblessed). See code flow in ::Storage::DBI::_populate_dbh
90sub _run_connection_actions {
91 my $self = shift;
92
93 # default mysql_auto_reconnect to off unless explicitly set
94 if (
95 $self->_dbh->{mysql_auto_reconnect}
96 and
97 ! exists $self->_dbic_connect_attributes->{mysql_auto_reconnect}
98 ) {
99 $self->_dbh->{mysql_auto_reconnect} = 0;
100 }
101
102 $self->next::method(@_);
103}
104
d3944540 105# we need to figure out what mysql version we're running
106sub sql_maker {
107 my $self = shift;
108
109 unless ($self->_sql_maker) {
110 my $maker = $self->next::method (@_);
111
112 # mysql 3 does not understand a bare JOIN
af1f4f84 113 my $mysql_ver = $self->_dbh_get_info('SQL_DBMS_VER');
d3944540 114 $maker->{_default_jointype} = 'INNER' if $mysql_ver =~ /^3/;
115 }
116
117 return $self->_sql_maker;
118}
119
e8d293df 120sub sqlt_type {
121 return 'MySQL';
122}
123
96736321 124sub deployment_statements {
125 my $self = shift;
126 my ($schema, $type, $version, $dir, $sqltargs, @rest) = @_;
127
128 $sqltargs ||= {};
129
130 if (
131 ! exists $sqltargs->{producer_args}{mysql_version}
8273e845 132 and
96736321 133 my $dver = $self->_server_info->{normalized_dbms_version}
134 ) {
135 $sqltargs->{producer_args}{mysql_version} = $dver;
136 }
137
138 $self->next::method($schema, $type, $version, $dir, $sqltargs, @rest);
139}
140
90d7422f 141sub _exec_svp_begin {
eeb8cfeb 142 my ($self, $name) = @_;
adb3554a 143
90d7422f 144 $self->_dbh->do("SAVEPOINT $name");
adb3554a 145}
146
90d7422f 147sub _exec_svp_release {
eeb8cfeb 148 my ($self, $name) = @_;
adb3554a 149
90d7422f 150 $self->_dbh->do("RELEASE SAVEPOINT $name");
adb3554a 151}
152
90d7422f 153sub _exec_svp_rollback {
eeb8cfeb 154 my ($self, $name) = @_;
adb3554a 155
90d7422f 156 $self->_dbh->do("ROLLBACK TO SAVEPOINT $name")
adb3554a 157}
48fe9087 158
106d5f3b 159sub is_replicating {
9ae966b9 160 my $status = shift->_get_dbh->selectrow_hashref('show slave status');
f797e89e 161 return ($status->{Slave_IO_Running} eq 'Yes') && ($status->{Slave_SQL_Running} eq 'Yes');
106d5f3b 162}
163
164sub lag_behind_master {
9ae966b9 165 return shift->_get_dbh->selectrow_hashref('show slave status')->{Seconds_Behind_Master};
106d5f3b 166}
167
843f8ecd 1681;
169
75d07914 170=head1 NAME
843f8ecd 171
c9d438ff 172DBIx::Class::Storage::DBI::mysql - Storage::DBI class implementing MySQL specifics
843f8ecd 173
174=head1 SYNOPSIS
175
c9d438ff 176Storage::DBI autodetects the underlying MySQL database, and re-blesses the
177C<$storage> object into this class.
178
3ce9dd08 179 my $schema = MyDb::Schema->connect( $dsn, $user, $pass, { on_connect_call => 'set_strict_mode' } );
843f8ecd 180
181=head1 DESCRIPTION
182
b8391c87 183This class implements MySQL specific bits of L<DBIx::Class::Storage::DBI>,
184like AutoIncrement column support and savepoints. Also it augments the
185SQL maker to support the MySQL-specific C<STRAIGHT_JOIN> join type, which
186you can use by specifying C<< join_type => 'straight' >> in the
187L<relationship attributes|DBIx::Class::Relationship::Base/join_type>
188
c9d438ff 189
97a0a148 190It also provides a one-stop on-connect macro C<set_strict_mode> which sets
191session variables such that MySQL behaves more predictably as far as the
192SQL standard is concerned.
0fde80d9 193
3c01add8 194=head1 STORAGE OPTIONS
195
196=head2 set_strict_mode
197
198Enables session-wide strict options upon connecting. Equivalent to:
199
200 ->connect ( ... , {
201 on_connect_do => [
202 q|SET SQL_MODE = CONCAT('ANSI,TRADITIONAL,ONLY_FULL_GROUP_BY,', @@sql_mode)|,
203 q|SET SQL_AUTO_IS_NULL = 0|,
204 ]
205 });
206
843f8ecd 207=head1 AUTHORS
208
c9d438ff 209See L<DBIx::Class/CONTRIBUTORS>
843f8ecd 210
211=head1 LICENSE
212
213You may distribute this code under the same terms as Perl itself.
214
215=cut