summaryrefslogtreecommitdiff
path: root/mysql-test/suite/stress/include/ddl1.inc
blob: 00e64cee3957201f45a642d045c685508dcb5a22 (plain)
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
######## include/ddl1.inc ######
#
# Purpose of include/ddl1.inc - include/ddl8.inc:
#
#    Stress storage engines with rapid CREATE/DROP TABLE/INDEX
#    and following SELECT/INSERT/SHOW etc.
#
# The variables
#     $loop_size -- number of rounds till we look at the clock again
#     $runtime   -- rough intended runtime per subtest variant
#                Real runtime without server restarts and comparison is:
#                   -   >= $runtime
#                   -   > runtime needed for $loop_size execution loops
#     $engine_type -- storage engine to be used in CREATE TABLE
# must be set within the routine sourcing this script.
#
# Other stuff which must already exist:
# - connection con2
# - stmt_start and stmt_break prepared by the default connection
#
# Attention:
#    The test does suppress the writing of most statements, server error
#    messages and result sets.
#    This is needed because their number is usual not deterministic.
#    The test is partially self checking. That means is prints some
#    helpful hints into the protocol and aborts if something is wrong.
#
# Creation of this test:
# 2007-07-04 mleich
#
############################################################################
#
# Some details:
#
# 1. Base question of the test:
#       There was just a create or drop of some object (TABLE/INDEX).
#
#       Could it happen that the next statement referring to this
#       object gets a somehow wrong server response (result set,
#       error message, warning) because the creation or removal of
#       the object is in an incomplete state?
#
#       Thinkable reasons for incomplete state of creation or removal:
#       The server performs the creation or removal
#       - all time incomplete.
#         Example:
#            Bug#28309 First insert violates unique constraint
#                      - was "memory" table empty ?
#       - asynchronous
#         In that case the next statement has probably to wait till
#         completion.
#
# 2. Why do we use in some scripts "--error 0,<expected error>" followed
#    a check of $mysql_errno?
#
#    System reactions when running with "--error 0,<expected error>":
#    - RC=0 --> no error message
#    - RC=<expected error> --> no error message
#    - RC not in (0,<expected error>) --> error message + abort of script
#                                         execution
#
#    Requirements and tricky solution for statements which are expected
#    to fail:
#    1. RC=<expected error>
#       - no abort of script execution
#         --> add "--error <expected error>"
#       - no error message into the protocol, because the number of
#         executions is NOT deterministic
#         --> use "--error 0,<expected error>"
#    2. RC=0 = failure
#       - abort of script execution
#       "--error 0,<expected error>" prevents the automatic abort of
#       execution. Therefore we do not need to code the abort.
#       --> Check $mysql_errno and do an explicit abort if $mysql_errno = 0.
#    3. RC not in (0,<expected error>)
#       - abort of script execution
#       "--error 0,<expected error>" causes an automatic abort.
#
# 3. We do not check the correctness of the SHOW CREATE TABLE output
#    in detail. This must be done within other tests.
#    We only check here that
#    - same CREATE TABLE/INDEX statements lead to the same
#    - different CREATE TABLE/INDEX statements lead to different
#    SHOW CREATE TABLE output
#    (Applies to ddl4.inc. and ddl8.inc.)
#
# 4. It could be assumed that running this test with
#    - PS-PROTOCOL
#      There are already subtests using prepared statements contained.
#    - SP/CURSOR/VIEW-PROTOCOL
#      These protocol variants transform SELECTs to hopefully much
#      stressing statement sequencies using SP/CURSOR/VIEW.
#      The SELECTs within include/ddl*.inc are very simple.
#    does not increase the coverage.
#    Therefore we skip runs with these protocols.
#
# 5. The test consumes significant runtime when running on a non RAM
#    based filesystem (run without "--mem").
#    Therefore we adjust $runtime and $loop_size depending on "--big-test"
#    option.
#    $runtime and $loop_size do not influence the expected results.
#    Rough runtime in seconds reported by mysql-test-run.pl:
#        (engine_type = MEMORY)
#    option set    -> $runtime $loop_size  real runtime in seconds
#                         1        20             68
#    --mem                1        20             32
#          --big-test     5       100            200
#    --mem --big-test     5       100            400
#    I assume that runs with slow filesystems are as much valuable
#    as runs with extreme fast filesystems.
#
# 6. Hints for analysis of test failures:
#    1. Look into the protocol and check in which ddl*.inc
#       script the difference to the expected result occurred.
#    2. Comment the sourcing of all other ddl*.inc scripts
#       out.
#    3. Edit the ddl*.inc script where the error occurred and
#       remove all
#       - "--disable_query_log", "--disable_result_log"
#       - successful passed subtests.
#    4. Alternative:
#       Have a look into VARDIR/master-data/mysql/general_log.CSV
#       and construct a new testcase from that.
#    5. If the problem is not deterministic, please try the following
#       - increase $runtime (important), $loop_size (most probably
#         less important) within the "t/ddl_<engine>.test" and
#         maybe the "--testcase-timeout" assigned to mysqltest-run.pl
#       - vary the I/O performance of the testing machine by using
#         a RAM or disk based filesystem for VARDIR
#


#----------------------------------------------------------------------
# Settings for Subtest 1 variants
# Scenario: CREATE with UNIQUE KEY/INSERT/DROP TABLE like in Bug#28309
let $create_table= CREATE TABLE t1 (f1 BIGINT,f2 BIGINT,UNIQUE(f1),UNIQUE(f2))
ENGINE = $engine_type;
let $insert_into=  INSERT INTO t1 VALUES (1,1), (2,2), (3,3);
let $drop_table=   DROP TABLE t1;
#----------------------------------------------------------------------

#
--echo # Subtest 1A (one connection, no PREPARE/EXECUTE)
--echo #    connection  action
--echo #    default:    $create_table
--echo #    default:    $insert_into
--echo #    default:    $drop_table
--disable_query_log
connection default;
let $run= 1;
# Determine the current time.
EXECUTE stmt_start;
# Run execution loops till the planned runtime is reached
while ($run)
{
   let $loop_run= $loop_size;
   while ($loop_run)
   {
      eval $create_table;
      eval $insert_into;
      eval $drop_table;
      dec $loop_run;
   }
   if (`EXECUTE stmt_break`)
   {
      let $run= 0;
   }
}
--enable_query_log
#
--echo # Subtest 1B (one connection, use PREPARE/EXECUTE)
--echo #    connection  action
--echo #    default:    $create_table
--echo #    default:    $insert_into
--echo #    default:    $drop_table
--disable_query_log
connection default;
eval PREPARE create_table FROM "$create_table";
EXECUTE create_table;
eval PREPARE insert_into FROM "$insert_into";
eval PREPARE drop_table FROM "$drop_table";
EXECUTE drop_table;
let $run= 1;
# Determine the current time.
EXECUTE stmt_start;
# Run execution loops till the planned runtime is reached
while ($run)
{
   let $loop_run= $loop_size;
   while ($loop_run)
   {
      EXECUTE create_table;
      EXECUTE insert_into;
      EXECUTE drop_table;
      dec $loop_run;
   }
   if (`EXECUTE stmt_break`)
   {
      let $run= 0;
   }
}
DEALLOCATE PREPARE create_table;
DEALLOCATE PREPARE insert_into;
DEALLOCATE PREPARE drop_table;
--enable_query_log
#
--echo # Subtest 1C (two connections, no PREPARE/EXECUTE)
--echo #    connection  action
--echo #    default:    $create_table
--echo #    con2:       $insert_into
--echo #    con2:       $drop_table
--disable_query_log
connection default;
let $run= 1;
# Determine the current time.
EXECUTE stmt_start;
# Run execution loops till the planned runtime is reached
while ($run)
{
   let $loop_run= $loop_size;
   while ($loop_run)
   {
      eval $create_table;
      connection con2;
      eval $insert_into;
      eval $drop_table;
      connection default;
      dec $loop_run;
   }
   if (`EXECUTE stmt_break`)
   {
      let $run= 0;
   }
}
--enable_query_log
#
--echo # Subtest 1D (two connections, use PREPARE/EXECUTE)
--echo #    connection  action
--echo #    default:    $create_table
--echo #    con2:       $insert_into
--echo #    con2:       $drop_table
--disable_query_log
connection default;
eval PREPARE create_table FROM "$create_table";
EXECUTE create_table;
connection con2;
eval PREPARE insert_into FROM "$insert_into";
eval PREPARE drop_table FROM "$drop_table";
EXECUTE drop_table;
connection default;
let $run= 1;
# Determine the current time.
EXECUTE stmt_start;
# Run execution loops till the planned runtime is reached
while ($run)
{
   let $loop_run= $loop_size;
   while ($loop_run)
   {
      EXECUTE create_table;
      connection con2;
      EXECUTE insert_into;
      EXECUTE drop_table;
      connection default;
      dec $loop_run;
   }
   if (`EXECUTE stmt_break`)
   {
      let $run= 0;
   }
}
DEALLOCATE PREPARE create_table;
connection con2;
DEALLOCATE PREPARE insert_into;
DEALLOCATE PREPARE drop_table;
connection default;
--enable_query_log