~ubuntu-branches/ubuntu/hardy/mysql-dfsg-5.0/hardy-updates

« back to all changes in this revision

Viewing changes to mysql-test/suite/row_lock/t/innodb_row_lock_view_mix_1.test

  • Committer: Bazaar Package Importer
  • Author(s): sean finney
  • Date: 2007-05-13 12:32:45 UTC
  • mfrom: (1.1.11 upstream)
  • Revision ID: james.westby@ubuntu.com-20070513123245-8c3l187dk34cz2ar
Tags: 5.0.41-2
the previous "translation changes" inadvertently introduced unrelated
changes in the package control file.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
--source include/have_innodb.inc
 
2
SELECT @@global.innodb_table_locks into @table_locks;
 
3
SET @@global.innodb_table_locks= OFF;
 
4
let $engine= InnoDB;
 
5
let $select= SELECT t1.i,t2.i FROM t1,t2 WHERE t1.i<125 AND t2.i=t1.i FOR UPDATE;
 
6
let $indext1= CREATE INDEX ixi ON t1 (i);
 
7
let $indext2= CREATE INDEX ixi ON t2 (i);
 
8
--source suite/row_lock/include/row_lock_view_mix.inc
 
9
SET @@global.innodb_table_locks= @table_locks;