~ubuntu-branches/ubuntu/precise/mysql-5.1/precise

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
######## t/ddl_ndb.test ######
#
# Stress the storage engine NDB with CREATE/DROP TABLE/INDEX
#
# Please look for details within include/ddl1.inc.
#
# Creation of this test:
# 2007-07-04 mleich
#

# Storage engine to be used in CREATE TABLE
--source include/have_ndb.inc
connection default;

let $engine_type= NDB;


if (`SELECT $PS_PROTOCOL + $SP_PROTOCOL + $CURSOR_PROTOCOL + $VIEW_PROTOCOL > 0`)
{
   --skip Test requires: ps-protocol/sp-protocol/cursor-protocol/view-protocol disabled
}
# Attention: We set here much smaller values for $runtime and $loop_size compared
#            to the other storage engines.
#            The reason is that NDB is extreme slow and should not exceed
#            the "testcase-timeout".
let $run= `SELECT '$BIG_TEST' = '1'`;
if ($run)
{
   # A run started with "--big-test" should be allowed to consume more time.
   # Rough intended runtime per subtest variant in seconds
   let $runtime = 5;
   # number of rounds till we look at the clock again
   let $loop_size= 3;
}
if (!$run)
{
   let $runtime = 1;
   let $loop_size= 1;
}


##### Some preparations needed for the ddl*.inc scripts
--source suite/stress/include/ddl.pre

--source suite/stress/include/ddl1.inc
--source suite/stress/include/ddl2.inc
--source suite/stress/include/ddl3.inc
--source suite/stress/include/ddl4.inc
--source suite/stress/include/ddl5.inc
--source suite/stress/include/ddl6.inc
# The following test suffers from
#   Bug#26043 UNIQUE INDEX create always fails after constraint violation
# and is therefore set to comment.
# --source suite/stress/include/ddl7.inc
--source suite/stress/include/ddl8.inc

##### Cleanup
--source suite/stress/include/ddl.cln