~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/innobase/srv/srv0srv.c

Merge Revision revid:vasil.dimov@oracle.com-20100513074652-0cvlhgkesgbb2bfh from MySQL InnoDB

Original revid:vasil.dimov@oracle.com-20100513074652-0cvlhgkesgbb2bfh

Original Authors: Vasil Dimov <vasil.dimov@oracle.com>
Original commit message:
Followup to Bug#51920, fix binlog.binlog_killed

This is a followup to the fix of

Bug#51920 Innodb connections in row lock wait ignore KILL until lock wait
timeout

in that fix (rb://279) the behavior was changed to honor when a trx is
interrupted during lock wait, but the returned error code was still
"lock wait timeout" when it should be "interrupted".

This change fixes the non-deterministically failing test binlog.binlog_killed,
that failed like this:

binlog.binlog_killed 'stmt'              [ fail ]
        Test ended at 2010-05-12 11:39:08

CURRENT_TEST: binlog.binlog_killed
mysqltest: At line 208: query 'reap' failed with wrong errno 1205: 'Lock wait timeout exceeded; try restarting transaction', instead of 0...

Approved by:    Sunny Bains (rb://344)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1675
1675
        innodb_lock_wait_timeout, because trx->mysql_thd == NULL. */
1676
1676
        lock_wait_timeout = thd_lock_wait_timeout(trx->mysql_thd);
1677
1677
 
1678
 
        if (trx_is_interrupted(trx)
1679
 
            || (lock_wait_timeout < 100000000
1680
 
                && wait_time > (double) lock_wait_timeout)) {
 
1678
        if (lock_wait_timeout < 100000000
 
1679
            && wait_time > (double) lock_wait_timeout) {
1681
1680
 
1682
1681
                trx->error_state = DB_LOCK_WAIT_TIMEOUT;
1683
1682
        }
 
1683
 
 
1684
        if (trx_is_interrupted(trx)) {
 
1685
 
 
1686
                trx->error_state = DB_INTERRUPTED;
 
1687
        }
1684
1688
}
1685
1689
 
1686
1690
/********************************************************************//**