1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# t/concurrent_innodb.test
#
# Concurrent InnoDB tests, mainly in UPDATE's
# Bug#3300
# Designed and tested by Sinisa Milivojevic, sinisa@mysql.com
#
# two non-interfering UPDATE's not changing result set
#
# Last update:
# 2006-07-26 ML test refactored (MySQL 5.1)
# main code t/innodb_concurrent.test -> include/concurrent.inc
# new wrapper t/concurrent_innodb.test
# test takes circa 5 minutes to run, so it's big
--source include/big_test.inc
--source include/have_innodb.inc
let $engine_type= InnoDB;
## TODO: Bug lp:315676
#--source include/concurrent.inc
select 1;
|