~ubuntu-branches/ubuntu/quantal/mysql-workbench/quantal

« back to all changes in this revision

Viewing changes to plugins/wb.admin/backend/config/raw_opts.py

  • Committer: Package Import Robot
  • Author(s): Dmitry Smirnov
  • Date: 2012-03-01 21:57:30 UTC
  • Revision ID: package-import@ubuntu.com-20120301215730-o7y8av8y38n162ro
Tags: upstream-5.2.38+dfsg
ImportĀ upstreamĀ versionĀ 5.2.38+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
ropts = [ { 'caption': 'federated',
 
2
    'description': 'Enables the FEDERATED storage engine',
 
3
    'name': 'federated',
 
4
    'values': [{ 'type': 'numeric'}],
 
5
    'versions': [ ((5, 1, 26), (6, 0, 7)),
 
6
                  ((5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
7
                  ()]},
 
8
  { 'caption': 'abort-slave-event-count',
 
9
    'description': 'Option used by mysql-test for debugging and testing of replication',
 
10
    'name': 'abort-slave-event-count',
 
11
    'values': [{ 'default': '0', 'minimum': '0', 'type': 'numeric'}],
 
12
    'versions': [ (),
 
13
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
14
                  ()]},
 
15
  { 'caption': 'allow-suspicious-udfs',
 
16
    'description': 'Allows use of UDFs consisting of only one symbol xxx() without corresponding xxx_init() or xxx_deinit()',
 
17
    'name': 'allow-suspicious-udfs',
 
18
    'values': [ { 'default': 'false',
 
19
                  'off': 'false',
 
20
                  'on': 'true',
 
21
                  'type': 'boolean'}],
 
22
    'versions': [ ((4, 1, 10), (5, 0, 3)),
 
23
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
24
                  ()]},
 
25
  { 'caption': 'ansi',
 
26
    'description': 'Use ANSI SQL syntax instead of MySQL syntax',
 
27
    'name': 'ansi',
 
28
    'values': [{ 'off': 'del', 'on': 'name', 'type': 'boolean'}],
 
29
    'versions': [ (),
 
30
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
31
                  ()]},
 
32
  { 'caption': 'auto_increment_increment',
 
33
    'description': 'AUTO_INCREMENT columns are incremented by this value',
 
34
    'name': 'auto_increment_increment',
 
35
    'values': [ { 'default': '1',
 
36
                  'maximum': '65535',
 
37
                  'minimum': '1',
 
38
                  'type': 'numeric'}],
 
39
    'versions': [ ((5, 0, 2),),
 
40
                  ((5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
41
                  ()]},
 
42
  { 'caption': 'auto_increment_offset',
 
43
    'description': 'Offset added to AUTO_INCREMENT columns',
 
44
    'name': 'auto_increment_offset',
 
45
    'values': [ { 'default': '1',
 
46
                  'maximum': '65535',
 
47
                  'minimum': '1',
 
48
                  'type': 'numeric'}],
 
49
    'versions': [ ((5, 0, 2),),
 
50
                  ((5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
51
                  ()]},
 
52
  { 'caption': 'autocommit',
 
53
    'description': 'Sets the autocommit mode',
 
54
    'name': 'autocommit',
 
55
    'values': [{ 'off': '0', 'on': '1', 'type': 'boolean'}],
 
56
    'versions': [ (),
 
57
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
58
                  ()]},
 
59
  { 'caption': 'backup_elevation',
 
60
    'description': 'Enable or disable BACKUP DATABASE privilege elevation',
 
61
    'name': 'backup_elevation',
 
62
    'values': [ { 'default': 'on',
 
63
                  'off': 'off',
 
64
                  'on': 'on',
 
65
                  'type': 'boolean'}],
 
66
    'versions': [((6, 0, 14),), ((5, 6), (6, 0)), ()]},
 
67
  { 'caption': 'backup_history_log',
 
68
    'description': 'Enable or disable MySQL Backup history log',
 
69
    'name': 'backup_history_log',
 
70
    'values': [ { 'default': 'on',
 
71
                  'off': 'off',
 
72
                  'on': 'on',
 
73
                  'type': 'boolean'}],
 
74
    'versions': [((6, 0, 8),), ((5, 6), (6, 0)), ()]},
 
75
  { 'caption': 'backup_history_log_file',
 
76
    'description': 'Name of the MySQL Backup history log file',
 
77
    'name': 'backup_history_log_file',
 
78
    'values': [{ 'default': 'backup_history.log', 'type': 'filename'}],
 
79
    'versions': [((6, 0, 8),), ((5, 6), (6, 0)), ()]},
 
80
  { 'caption': 'backup_progress_log',
 
81
    'description': 'Enable or disable MySQL Backup progress log',
 
82
    'name': 'backup_progress_log',
 
83
    'values': [ { 'default': 'on',
 
84
                  'off': 'off',
 
85
                  'on': 'on',
 
86
                  'type': 'boolean'}],
 
87
    'versions': [((6, 0, 8),), ((5, 6), (6, 0)), ()]},
 
88
  { 'caption': 'backup_progress_log_file',
 
89
    'description': 'Name of the MySQL Backup progress log file',
 
90
    'name': 'backup_progress_log_file',
 
91
    'values': [{ 'default': 'backup_progress.log', 'type': 'filename'}],
 
92
    'versions': [((6, 0, 8),), ((5, 6), (6, 0)), ()]},
 
93
  { 'caption': 'back_log',
 
94
    'description': 'The number of outstanding connection requests MySQL can have',
 
95
    'name': 'back_log',
 
96
    'values': [ { 'default': '50',
 
97
                  'maximum': '65535',
 
98
                  'minimum': '1',
 
99
                  'type': 'numeric'}],
 
100
    'versions': [ (),
 
101
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
102
                  ()]},
 
103
  { 'caption': 'backupdir',
 
104
    'description': 'Default backup image file directory',
 
105
    'name': 'backupdir',
 
106
    'values': [{ 'type': 'filename'}],
 
107
    'versions': [((6, 0, 7),), ((5, 6), (6, 0)), ()]},
 
108
  { 'caption': 'basedir',
 
109
    'description': 'Path to installation directory',
 
110
    'name': 'basedir',
 
111
    'values': [{ 'type': 'filename'}],
 
112
    'versions': [ (),
 
113
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
114
                  ()]},
 
115
  { 'caption': 'big-tables',
 
116
    'description': 'Allow big result sets by saving all temporary sets on file',
 
117
    'name': 'big-tables',
 
118
    'values': [{ 'off': '0', 'on': '1', 'type': 'boolean'}],
 
119
    'versions': [ (),
 
120
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
121
                  ()]},
 
122
  { 'caption': 'bind-address',
 
123
    'description': 'IP address or host name to bind to',
 
124
    'name': 'bind-address',
 
125
    'optype': { 'format': 'bind-address=name'},
 
126
    'values': [ { 'default': '0.0.0.0',
 
127
                  'maximum': '255.255.255.255',
 
128
                  'minimum': '0.0.0.0',
 
129
                  'type': 'string'}],
 
130
    'versions': [ (),
 
131
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
132
                  ()]},
 
133
  { 'caption': 'binlog-do-db',
 
134
    'description': 'Limits binary logging to specific databases',
 
135
    'name': 'binlog-do-db',
 
136
    'values': [{ 'type': 'string'}],
 
137
    'versions': [ (),
 
138
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
139
                  ()]},
 
140
  { 'caption': 'binlog-ignore-db',
 
141
    'description': 'Tells the master that updates to the given database should not be logged to the binary log',
 
142
    'name': 'binlog-ignore-db',
 
143
    'values': [{ 'type': 'string'}],
 
144
    'versions': [ (),
 
145
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
146
                  ()]},
 
147
  { 'caption': 'binlog-row-event-max-size',
 
148
    'description': 'Binary log max event size',
 
149
    'name': 'binlog-row-event-max-size',
 
150
    'values': [ { 'bitsize': '32',
 
151
                  'default': '1024',
 
152
                  'maximum': '4294967295',
 
153
                  'minimum': '256',
 
154
                  'type': 'numeric'},
 
155
                { 'bitsize': '64',
 
156
                  'default': '1024',
 
157
                  'maximum': '18446744073709547520',
 
158
                  'minimum': '256',
 
159
                  'type': 'numeric'}],
 
160
    'versions': [((5, 1, 5),), ((5, 1), (5, 4), (5, 5), (5, 6), (6, 0)), ()]},
 
161
  { 'caption': 'binlog_cache_size',
 
162
    'description': 'The size of the cache to hold the SQL statements for the binary log during a transaction',
 
163
    'name': 'binlog_cache_size',
 
164
    'values': [ { 'bitsize': '32',
 
165
                  'default': '32768',
 
166
                  'maximum': '4294967295',
 
167
                  'minimum': '4096',
 
168
                  'type': 'numeric'},
 
169
                { 'bitsize': '64',
 
170
                  'default': '32768',
 
171
                  'maximum': '18446744073709547520',
 
172
                  'minimum': '4096',
 
173
                  'type': 'numeric'}],
 
174
    'versions': [ (),
 
175
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
176
                  ()]},
 
177
  { 'caption': 'binlog_stmt_cache_size',
 
178
    'description': 'The size of the cache to hold nontransactional statements for the binary log during a transaction',
 
179
    'name': 'binlog_stmt_cache_size',
 
180
    'values': [ { 'bitsize': '32',
 
181
                  'default': '32768',
 
182
                  'maximum': '4294967295',
 
183
                  'minimum': '4096',
 
184
                  'type': 'numeric'},
 
185
                { 'bitsize': '64',
 
186
                  'default': '32768',
 
187
                  'maximum': '18446744073709547520',
 
188
                  'minimum': '4096',
 
189
                  'type': 'numeric'}],
 
190
    'versions': [((5, 5, 9), (5, 6, 1)), ((5, 5), (5, 6)), ()]},
 
191
  { 'caption': 'binlog-format',
 
192
    'description': 'Specifies the format of the binary log',
 
193
    'name': 'binlog-format',
 
194
    'optype': { 'format': 'binlog-format=format'},
 
195
    'values': [ { 'choice': ['ROW', 'STATEMENT'],
 
196
                  'default': 'STATEMENT',
 
197
                  'inversion': (5, 1, 5),
 
198
                  'outversion': (5, 1, 7),
 
199
                  'type': 'enum'},
 
200
                { 'choice': ['ROW', 'STATEMENT', 'MIXED'],
 
201
                  'default': 'STATEMENT',
 
202
                  'inversion': (5, 1, 8),
 
203
                  'outversion': (5, 1, 11),
 
204
                  'type': 'enum'},
 
205
                { 'choice': ['ROW', 'STATEMENT', 'MIXED'],
 
206
                  'default': 'MIXED',
 
207
                  'inversion': (5, 1, 12),
 
208
                  'outversion': (5, 1, 28),
 
209
                  'type': 'enum'},
 
210
                { 'choice': ['ROW', 'STATEMENT', 'MIXED'],
 
211
                  'default': 'MIXED',
 
212
                  'inversion': (5, 1, 14),
 
213
                  'type': 'enum'},
 
214
                { 'choice': ['ROW', 'STATEMENT', 'MIXED'],
 
215
                  'default': 'MIXED',
 
216
                  'inversion': (5, 1, 16),
 
217
                  'type': 'enum'},
 
218
                { 'choice': ['ROW', 'STATEMENT', 'MIXED'],
 
219
                  'default': 'MIXED',
 
220
                  'inversion': (5, 1, 19),
 
221
                  'type': 'enum'},
 
222
                { 'choice': ['ROW', 'STATEMENT', 'MIXED'],
 
223
                  'default': 'STATEMENT',
 
224
                  'inversion': (5, 1, 29),
 
225
                  'type': 'enum'}],
 
226
    'versions': [((5, 1, 5),), ((5, 1), (5, 4), (5, 5), (5, 6), (6, 0)), ()]},
 
227
  { 'caption': 'binlog_direct_non_transactional_updates',
 
228
    'description': 'Causes updates using statement format to nontransactional engines to be written directly to binary log. See documentation before using.',
 
229
    'name': 'binlog_direct_non_transactional_updates',
 
230
    'values': [ { 'default': 'off',
 
231
                  'off': 'off',
 
232
                  'on': 'on',
 
233
                  'type': 'boolean'}],
 
234
    'versions': [ ((5, 1, 44), (5, 5, 2), (6, 0, 14)),
 
235
                  ((5, 1), (5, 5), (5, 6), (6, 0)),
 
236
                  ()]},
 
237
  { 'caption': 'bootstrap',
 
238
    'description': 'Used by mysql installation scripts',
 
239
    'name': 'bootstrap',
 
240
    'values': [{ 'off': 'del', 'on': 'name', 'type': 'boolean'}],
 
241
    'versions': [ (),
 
242
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
243
                  ()]},
 
244
  { 'caption': 'bulk_insert_buffer_size',
 
245
    'description': 'Size of tree cache used in bulk insert optimization',
 
246
    'name': 'bulk_insert_buffer_size',
 
247
    'values': [ { 'bitsize': '32',
 
248
                  'default': '8388608',
 
249
                  'maximum': '4294967295',
 
250
                  'minimum': '0',
 
251
                  'type': 'numeric'},
 
252
                { 'bitsize': '64',
 
253
                  'default': '8388608',
 
254
                  'maximum': '18446744073709547520',
 
255
                  'minimum': '0',
 
256
                  'type': 'numeric'}],
 
257
    'versions': [ (),
 
258
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
259
                  ()]},
 
260
  { 'caption': 'character-set-client-handshake',
 
261
    'description': "Don't ignore client side character set value sent during handshake",
 
262
    'name': 'character-set-client-handshake',
 
263
    'values': [ { 'default': 'true',
 
264
                  'off': 'false',
 
265
                  'on': 'true',
 
266
                  'type': 'boolean'}],
 
267
    'versions': [ ((4, 1, 15),),
 
268
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
269
                  ()]},
 
270
  { 'caption': 'character-set-filesystem',
 
271
    'description': 'Set the file system character set',
 
272
    'name': 'character-set-filesystem',
 
273
    'values': [{ 'type': 'string'}],
 
274
    'versions': [ ((5, 0, 19), (5, 1, 6)),
 
275
                  ((5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
276
                  ()]},
 
277
  { 'caption': 'character-set-server',
 
278
    'description': 'Set the default character set',
 
279
    'name': 'character-set-server',
 
280
    'values': [{ 'type': 'string'}],
 
281
    'versions': [ ((4, 1, 3),),
 
282
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
283
                  ()]},
 
284
  { 'caption': 'character-sets-dir',
 
285
    'description': 'Directory where character sets are',
 
286
    'name': 'character-sets-dir',
 
287
    'optype': { 'format': 'character-sets-dir=path'},
 
288
    'values': [{ 'type': 'dirname'}],
 
289
    'versions': [ ((4, 1, 2),),
 
290
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
291
                  ()]},
 
292
  { 'caption': 'chroot',
 
293
    'description': 'Chroot mysqld daemon during startup',
 
294
    'name': 'chroot',
 
295
    'values': [{ 'type': 'filename'}],
 
296
    'versions': [ (),
 
297
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
298
                  ()]},
 
299
  { 'caption': 'collation-server',
 
300
    'description': 'Set the default collation',
 
301
    'name': 'collation-server',
 
302
    'values': [{ 'type': 'string'}],
 
303
    'versions': [ ((4, 1, 1),),
 
304
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
305
                  ()]},
 
306
  { 'caption': 'completion_type',
 
307
    'description': 'Default completion type',
 
308
    'name': 'completion_type',
 
309
    'values': [ { 'choice': ['0', '1', '2'],
 
310
                  'default': '0',
 
311
                  'inversion': (5, 0, 3),
 
312
                  'outversion': (5, 5, 2),
 
313
                  'type': 'numeric'},
 
314
                { 'choice': ['NO_CHAIN', 'CHAIN', 'RELEASE', '0', '1', '2'],
 
315
                  'default': 'NO_CHAIN',
 
316
                  'inversion': (5, 5, 3),
 
317
                  'type': 'enum'},
 
318
                { 'choice': ['0', '1', '2'],
 
319
                  'default': '0',
 
320
                  'inversion': (6, 0, 0),
 
321
                  'outversion': (6, 0, 14),
 
322
                  'type': 'numeric'},
 
323
                { 'choice': ['NO_CHAIN', 'CHAIN', 'RELEASE', '0', '1', '2'],
 
324
                  'default': 'NO_CHAIN',
 
325
                  'inversion': (6, 0, 14),
 
326
                  'type': 'enum'}],
 
327
    'versions': [ ((5, 0, 3),),
 
328
                  ((5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
329
                  ()]},
 
330
  { 'caption': 'concurrent_insert',
 
331
    'description': 'Use concurrent insert with MyISAM',
 
332
    'disabledby': 'skip-concurrent-insert',
 
333
    'name': 'concurrent_insert',
 
334
    'values': [ { 'default': 'true',
 
335
                  'off': 'false',
 
336
                  'on': 'true',
 
337
                  'outversion': (5, 0, 5),
 
338
                  'type': 'boolean'},
 
339
                { 'choice': ['0', '1', '2'],
 
340
                  'default': '1',
 
341
                  'inversion': (5, 0, 6),
 
342
                  'outversion': (5, 5, 2),
 
343
                  'type': 'numeric'},
 
344
                { 'choice': ['NEVER', 'AUTO', 'ALWAYS', '0', '1', '2'],
 
345
                  'default': 'AUTO',
 
346
                  'inversion': (5, 5, 3),
 
347
                  'type': 'enum'},
 
348
                { 'choice': ['0', '1', '2'],
 
349
                  'default': '1',
 
350
                  'inversion': (6, 0, 0),
 
351
                  'outversion': (6, 0, 14),
 
352
                  'type': 'numeric'},
 
353
                { 'choice': ['NEVER', 'AUTO', 'ALWAYS', '0', '1', '2'],
 
354
                  'default': 'AUTO',
 
355
                  'inversion': (6, 0, 14),
 
356
                  'type': 'enum'}],
 
357
    'versions': [ (),
 
358
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
359
                  ()]},
 
360
  { 'caption': 'connect_timeout',
 
361
    'description': "The number of seconds the mysqld server waits for a connect packet before responding with 'Bad handshake'",
 
362
    'name': 'connect_timeout',
 
363
    'values': [ { 'default': '5',
 
364
                  'minimum': '2',
 
365
                  'outversion': (5, 0, 51),
 
366
                  'type': 'numeric'},
 
367
                { 'default': '10',
 
368
                  'inversion': (5, 0, 52),
 
369
                  'type': 'numeric'},
 
370
                { 'default': '5',
 
371
                  'outversion': (5, 1, 22),
 
372
                  'type': 'numeric'},
 
373
                { 'default': '10',
 
374
                  'inversion': (5, 1, 23),
 
375
                  'type': 'numeric'}],
 
376
    'versions': [ (),
 
377
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
378
                  ()]},
 
379
  { 'caption': 'console',
 
380
    'description': 'Write error output on screen; do not remove the console window on Windows',
 
381
    'name': 'console',
 
382
    'values': [ { 'off': '0',
 
383
                  'on': '1',
 
384
                  'platform': 'windows',
 
385
                  'type': 'boolean'}],
 
386
    'versions': [ (),
 
387
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
388
                  ()]},
 
389
  { 'caption': 'core-file',
 
390
    'description': 'Write core on errors',
 
391
    'name': 'core-file',
 
392
    'values': [ { 'default': 'false',
 
393
                  'off': 'false',
 
394
                  'on': 'true',
 
395
                  'type': 'boolean'}],
 
396
    'versions': [ (),
 
397
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
398
                  ()]},
 
399
  { 'caption': 'datadir',
 
400
    'description': 'Path to the database root',
 
401
    'name': 'datadir',
 
402
    'values': [{ 'type': 'filename'}],
 
403
    'versions': [ (),
 
404
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
405
                  ()]},
 
406
  { 'caption': 'debug-sync-timeout',
 
407
    'description': 'Timeout for Debug Sync synchronization points',
 
408
    'name': 'debug-sync-timeout',
 
409
    'values': [{ 'type': 'numeric'}],
 
410
    'versions': [ ((5, 1, 41), (6, 0, 6)),
 
411
                  ((5, 1), (5, 5), (5, 6), (6, 0)),
 
412
                  ()]},
 
413
  { 'caption': 'default-character-set',
 
414
    'deprecated': (5, 0),
 
415
    'description': 'Set the default character set',
 
416
    'name': 'default-character-set',
 
417
    'optype': { 'format': 'default-character-set=name'},
 
418
    'values': [{ 'type': 'string'}],
 
419
    'versions': [((4, 1, 3),), ((4, 1), (5, 0)), ()]},
 
420
  { 'caption': 'default-collation',
 
421
    'deprecated': (4, 1, 3),
 
422
    'description': 'Set the default collation',
 
423
    'name': 'default-collation',
 
424
    'optype': { 'format': 'default-collation=name'},
 
425
    'values': [{ 'type': 'string'}],
 
426
    'versions': [(), ((4, 1),), ()]},
 
427
  { 'caption': 'default-storage-engine',
 
428
    'description': 'Set the default storage engine (table type) for tables',
 
429
    'name': 'default-storage-engine',
 
430
    'values': [ { 'default': 'MyISAM',
 
431
                  'outversion': (5, 5, 4),
 
432
                  'type': 'enum'},
 
433
                { 'default': 'InnoDB',
 
434
                  'inversion': (5, 5, 5),
 
435
                  'type': 'enum'},
 
436
                { 'default': 'MyISAM',
 
437
                  'inversion': (6, 0, 0),
 
438
                  'type': 'enum'}],
 
439
    'versions': [ ((4, 1, 2),),
 
440
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
441
                  ()]},
 
442
  { 'caption': 'default-table-type',
 
443
    'deprecated': (5, 0),
 
444
    'description': 'This option is a synonym for --default-storage-engine',
 
445
    'name': 'default-table-type',
 
446
    'values': [{ 'type': 'string'}],
 
447
    'versions': [(), ((4, 1), (5, 0), (5, 1), (5, 4), (6, 0)), ((6, 0, 8),)]},
 
448
  { 'caption': 'default-time-zone',
 
449
    'description': 'Set the default time zone',
 
450
    'name': 'default-time-zone',
 
451
    'values': [{ 'type': 'string'}],
 
452
    'versions': [ ((4, 1, 3),),
 
453
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
454
                  ()]},
 
455
  { 'caption': 'default_week_format',
 
456
    'description': 'The default week format used by WEEK() functions',
 
457
    'name': 'default_week_format',
 
458
    'values': [ { 'default': '0',
 
459
                  'maximum': '7',
 
460
                  'minimum': '0',
 
461
                  'type': 'numeric'}],
 
462
    'versions': [ (),
 
463
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
464
                  ()]},
 
465
  { 'caption': 'delay-key-write',
 
466
    'description': 'Type of DELAY_KEY_WRITE',
 
467
    'name': 'delay-key-write',
 
468
    'values': [ { 'choice': ['ON', 'OFF', 'ALL'],
 
469
                  'default': 'ON',
 
470
                  'type': 'enum'}],
 
471
    'versions': [ (),
 
472
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
473
                  ()]},
 
474
  { 'caption': 'delayed_insert_limit',
 
475
    'description': 'After inserting delayed_insert_limit rows, the INSERT DELAYED handler will check if there are any SELECT statements pending. If so, it allows these to execute before continuing',
 
476
    'name': 'delayed_insert_limit',
 
477
    'values': [ { 'bitsize': '32',
 
478
                  'default': '100',
 
479
                  'maximum': '4294967295',
 
480
                  'minimum': '1',
 
481
                  'type': 'numeric'},
 
482
                { 'bitsize': '64',
 
483
                  'default': '100',
 
484
                  'maximum': '18446744073709547520',
 
485
                  'minimum': '1',
 
486
                  'type': 'numeric'}],
 
487
    'versions': [ (),
 
488
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
489
                  ()]},
 
490
  { 'caption': 'delayed_insert_timeout',
 
491
    'description': 'How many seconds an INSERT DELAYED thread should wait for INSERT statements before terminating',
 
492
    'name': 'delayed_insert_timeout',
 
493
    'values': [{ 'default': '300', 'type': 'numeric'}],
 
494
    'versions': [ (),
 
495
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
496
                  ()]},
 
497
  { 'caption': 'delayed_queue_size',
 
498
    'description': 'What size queue (in rows) should be allocated for handling INSERT DELAYED',
 
499
    'name': 'delayed_queue_size',
 
500
    'values': [ { 'bitsize': '32',
 
501
                  'default': '1000',
 
502
                  'maximum': '4294967295',
 
503
                  'minimum': '1',
 
504
                  'type': 'numeric'},
 
505
                { 'bitsize': '64',
 
506
                  'default': '1000',
 
507
                  'maximum': '18446744073709547520',
 
508
                  'minimum': '1',
 
509
                  'type': 'numeric'}],
 
510
    'versions': [ (),
 
511
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
512
                  ()]},
 
513
  { 'caption': 'des-key-file',
 
514
    'description': 'Load keys for des_encrypt() and des_encrypt from given file',
 
515
    'name': 'des-key-file',
 
516
    'optype': { 'format': 'des-key-file=file_name'},
 
517
    'values': [],
 
518
    'versions': [ (),
 
519
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
520
                  ()]},
 
521
  { 'caption': 'disconnect-slave-event-count',
 
522
    'description': 'Option used by mysql-test for debugging and testing of replication',
 
523
    'name': 'disconnect-slave-event-count',
 
524
    'values': [{ 'default': '0', 'type': 'numeric'}],
 
525
    'versions': [ (),
 
526
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
527
                  ()]},
 
528
  { 'caption': 'div_precision_increment',
 
529
    'description': "Scale of the result of '/' operator will be increased by this many digits",
 
530
    'name': 'div_precision_increment',
 
531
    'values': [ { 'default': '4',
 
532
                  'maximum': '30',
 
533
                  'minimum': '0',
 
534
                  'type': 'numeric'}],
 
535
    'versions': [ ((5, 0, 6),),
 
536
                  ((5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
537
                  ()]},
 
538
  { 'caption': 'enable-locking',
 
539
    'deprecated': (4, 0, 3),
 
540
    'description': 'Deprecated option, use --external-locking instead',
 
541
    'name': 'enable-locking',
 
542
    'values': [ { 'default': 'false',
 
543
                  'off': 'false',
 
544
                  'on': 'true',
 
545
                  'type': 'boolean'}],
 
546
    'versions': [ (),
 
547
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
548
                  ()]},
 
549
  { 'caption': 'enable-pstack',
 
550
    'deprecated': (5, 1, 54),
 
551
    'description': 'Print a symbolic stack trace on failure',
 
552
    'name': 'enable-pstack',
 
553
    'values': [ { 'default': 'false',
 
554
                  'off': 'false',
 
555
                  'on': 'true',
 
556
                  'type': 'boolean'}],
 
557
    'versions': [ (),
 
558
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (6, 0)),
 
559
                  ((5, 5, 7),)]},
 
560
  { 'caption': 'engine-condition-pushdown',
 
561
    'deprecated': (5, 5, 3),
 
562
    'description': 'Push supported query conditions to the storage engine',
 
563
    'name': 'engine-condition-pushdown',
 
564
    'values': [ { 'default': 'off',
 
565
                  'inversion': (5, 0, 3),
 
566
                  'off': 'off',
 
567
                  'on': 'on',
 
568
                  'type': 'boolean'},
 
569
                { 'default': 'on',
 
570
                  'inversion': (5, 1, 0),
 
571
                  'off': 'off',
 
572
                  'on': 'on',
 
573
                  'type': 'boolean'}],
 
574
    'versions': [ ((5, 0, 3),),
 
575
                  ((5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
576
                  ()]},
 
577
  { 'caption': 'event-scheduler',
 
578
    'description': 'Enable/disable and start/stop the event scheduler. Note that this variable underwent significant changes in behavior and permitted values in MySQL 5.1.11 and 5.1.12',
 
579
    'name': 'event-scheduler',
 
580
    'values': [ { 'choice': ['ON', 'OFF', 'DISABLED'],
 
581
                  'default': 'OFF',
 
582
                  'type': 'enum'}],
 
583
    'versions': [((5, 1, 6),), ((5, 1), (5, 4), (5, 5), (5, 6), (6, 0)), ()]},
 
584
  { 'caption': 'exit-info',
 
585
    'description': 'Used for debugging; Use at your own risk!',
 
586
    'name': 'exit-info',
 
587
    'values': [{ 'type': 'numeric'}],
 
588
    'versions': [ (),
 
589
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
590
                  ()]},
 
591
  { 'caption': 'expire_logs_days',
 
592
    'description': 'If nonzero, binary logs will be purged after expire_logs_days days; possible purges happen at startup and at binary log rotation',
 
593
    'name': 'expire_logs_days',
 
594
    'values': [ { 'default': '0',
 
595
                  'maximum': '99',
 
596
                  'minimum': '0',
 
597
                  'type': 'numeric'}],
 
598
    'versions': [ (),
 
599
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
600
                  ()]},
 
601
  { 'caption': 'external-locking',
 
602
    'description': 'Use system (external) locking',
 
603
    'disabledby': 'skip-external-locking',
 
604
    'name': 'external-locking',
 
605
    'values': [ { 'default': 'false',
 
606
                  'off': 'disabledby',
 
607
                  'on': 'true',
 
608
                  'type': 'boolean'}],
 
609
    'versions': [ (),
 
610
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
611
                  ()]},
 
612
  { 'caption': 'flush',
 
613
    'description': 'Flush tables to disk between SQL statements',
 
614
    'name': 'flush',
 
615
    'values': [ { 'default': 'off',
 
616
                  'off': 'off',
 
617
                  'on': 'on',
 
618
                  'type': 'boolean'}],
 
619
    'versions': [ (),
 
620
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
621
                  ()]},
 
622
  { 'caption': 'flush_time',
 
623
    'description': 'A dedicated thread is created to flush all tables at the given interval',
 
624
    'name': 'flush_time',
 
625
    'values': [ { 'default': '0', 'minimum': '0', 'type': 'numeric'},
 
626
                { 'default': '1800',
 
627
                  'minimum': '0',
 
628
                  'platform': 'windows',
 
629
                  'type': 'numeric'}],
 
630
    'versions': [ (),
 
631
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
632
                  ()]},
 
633
  { 'caption': 'ft_boolean_syntax',
 
634
    'description': 'List of operators for MATCH ... AGAINST ( ... IN BOOLEAN MODE)',
 
635
    'name': 'ft_boolean_syntax',
 
636
    'values': [{ 'default': '+-><()~*:""&', 'type': 'string'}],
 
637
    'versions': [ (),
 
638
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
639
                  ()]},
 
640
  { 'caption': 'ft_max_word_len',
 
641
    'description': 'The maximum length of the word to be included in a FULLTEXT index. Note: FULLTEXT indexes must be rebuilt after changing this variable',
 
642
    'name': 'ft_max_word_len',
 
643
    'values': [{ 'minimum': '10', 'type': 'numeric'}],
 
644
    'versions': [ (),
 
645
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
646
                  ()]},
 
647
  { 'caption': 'ft_min_word_len',
 
648
    'description': 'The minimum length of the word to be included in a FULLTEXT index. Note: FULLTEXT indexes must be rebuilt after changing this variable',
 
649
    'name': 'ft_min_word_len',
 
650
    'values': [{ 'default': '4', 'minimum': '1', 'type': 'numeric'}],
 
651
    'versions': [ (),
 
652
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
653
                  ()]},
 
654
  { 'caption': 'ft_query_expansion_limit',
 
655
    'description': 'Number of best matches to use for query expansion',
 
656
    'name': 'ft_query_expansion_limit',
 
657
    'values': [ { 'default': '20',
 
658
                  'maximum': '1000',
 
659
                  'minimum': '0',
 
660
                  'type': 'numeric'}],
 
661
    'versions': [ ((4, 1, 1),),
 
662
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
663
                  ()]},
 
664
  { 'caption': 'ft_stopword_file',
 
665
    'description': 'Use stopwords from this file instead of built-in list',
 
666
    'name': 'ft_stopword_file',
 
667
    'optype': { 'format': 'ft_stopword_file=file_name'},
 
668
    'values': [{ 'type': 'filename'}],
 
669
    'versions': [ ((4, 1, 10),),
 
670
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
671
                  ()]},
 
672
  { 'caption': 'gdb',
 
673
    'description': 'Set up signals usable for debugging',
 
674
    'name': 'gdb',
 
675
    'values': [ { 'default': 'false',
 
676
                  'off': 'false',
 
677
                  'on': 'true',
 
678
                  'type': 'boolean'}],
 
679
    'versions': [ (),
 
680
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
681
                  ()]},
 
682
  { 'caption': 'general-log',
 
683
    'description': 'Enable|disable general log',
 
684
    'name': 'general-log',
 
685
    'values': [ { 'default': 'off',
 
686
                  'off': 'off',
 
687
                  'on': 'on',
 
688
                  'type': 'boolean'}],
 
689
    'versions': [((5, 1, 12),), ((5, 1), (5, 4), (5, 5), (5, 6), (6, 0)), ()]},
 
690
  { 'caption': 'general_log_file',
 
691
    'description': 'Name of the general query log file',
 
692
    'name': 'general_log_file',
 
693
    'optype': { 'inversion': '5.1.29'},
 
694
    'values': [{ 'default': 'host_name.log', 'type': 'filename'}],
 
695
    'versions': [((5, 1, 12),), ((5, 1), (5, 4), (5, 5), (5, 6), (6, 0)), ()]},
 
696
  { 'caption': 'group_concat_max_len',
 
697
    'description': 'The maximum length of the result of function group_concat',
 
698
    'name': 'group_concat_max_len',
 
699
    'values': [ { 'bitsize': '32',
 
700
                  'default': '1024',
 
701
                  'maximum': '4294967295',
 
702
                  'minimum': '4',
 
703
                  'type': 'numeric'},
 
704
                { 'bitsize': '64',
 
705
                  'default': '1024',
 
706
                  'maximum': '18446744073709547520',
 
707
                  'minimum': '4',
 
708
                  'type': 'numeric'}],
 
709
    'versions': [ ((4, 1, 10),),
 
710
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
711
                  ()]},
 
712
  { 'caption': 'ignore-builtin-innodb',
 
713
    'description': 'Ignore the built-in InnoDB',
 
714
    'name': 'ignore-builtin-innodb',
 
715
    'values': [{ 'off': '0', 'on': '1', 'type': 'boolean'}],
 
716
    'versions': [((5, 1, 33),), ((5, 1), (5, 4), (5, 5), (5, 6)), ()]},
 
717
  { 'caption': 'init_connect',
 
718
    'description': 'Statements that are executed for each new connection',
 
719
    'name': 'init_connect',
 
720
    'values': [{ 'type': 'string'}],
 
721
    'versions': [ ((4, 1, 2),),
 
722
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
723
                  ()]},
 
724
  { 'caption': 'init-file',
 
725
    'description': 'Read SQL statements from this file at startup',
 
726
    'name': 'init-file',
 
727
    'optype': { 'format': 'init-file=file_name'},
 
728
    'values': [{ 'type': 'filename'}],
 
729
    'versions': [ (),
 
730
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
731
                  ()]},
 
732
  { 'caption': 'init-rpl-role',
 
733
    'description': 'Set the replication role (not used)',
 
734
    'name': 'init-rpl-role',
 
735
    'values': [{ 'type': 'string'}],
 
736
    'versions': [(), ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (6, 0)), ()]},
 
737
  { 'caption': 'init_slave',
 
738
    'description': 'Command(s) that are executed when a slave connects to a master',
 
739
    'name': 'init_slave',
 
740
    'values': [{ 'type': 'string'}],
 
741
    'versions': [ ((4, 1, 2),),
 
742
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
743
                  ()]},
 
744
  { 'caption': 'innodb',
 
745
    'description': 'Enable InnoDB (if this version of MySQL supports it)',
 
746
    'name': 'innodb',
 
747
    'values': [ { 'off': '0',
 
748
                  'on': '1',
 
749
                  'outversion': (5, 1, 35),
 
750
                  'type': 'boolean'},
 
751
                { 'choice': ['OFF', 'ON', 'FORCE'],
 
752
                  'inversion': (5, 1, 36),
 
753
                  'type': 'enum'},
 
754
                { 'inversion': (5, 4, 0),
 
755
                  'off': '0',
 
756
                  'on': '1',
 
757
                  'outversion': (5, 4, 1),
 
758
                  'type': 'boolean'},
 
759
                { 'choice': ['OFF', 'ON', 'FORCE'],
 
760
                  'inversion': (5, 4, 2),
 
761
                  'type': 'enum'},
 
762
                { 'inversion': (6, 0, 0),
 
763
                  'off': '0',
 
764
                  'on': '1',
 
765
                  'type': 'boolean'}],
 
766
    'versions': [ (),
 
767
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
768
                  ()]},
 
769
  { 'caption': 'innodb_adaptive_flushing',
 
770
    'description': 'Control InnoDB adaptive flushing of dirty pages',
 
771
    'name': 'innodb_adaptive_flushing',
 
772
    'values': [ { 'default': 'on',
 
773
                  'off': 'off',
 
774
                  'on': 'on',
 
775
                  'type': 'boolean'}],
 
776
    'versions': [ ((5, 1, 38), (5, 4, 2)),
 
777
                  ((5, 1), (5, 4), (5, 5), (5, 6)),
 
778
                  ()]},
 
779
  { 'caption': 'innodb_adaptive_hash_index',
 
780
    'description': 'Enable or disable InnoDB adaptive hash indexes',
 
781
    'name': 'innodb_adaptive_hash_index',
 
782
    'values': [ { 'default': 'on',
 
783
                  'off': 'off',
 
784
                  'on': 'on',
 
785
                  'type': 'boolean'}],
 
786
    'versions': [ ((5, 0, 52), (5, 1, 24), (6, 0, 5)),
 
787
                  ((5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
788
                  ()]},
 
789
  { 'caption': 'innodb_additional_mem_pool_size',
 
790
    'description': 'Size of a memory pool InnoDB uses to store data dictionary information and other internal data structures',
 
791
    'name': 'innodb_additional_mem_pool_size',
 
792
    'values': [ { 'default': '1048576',
 
793
                  'maximum': '4294967295',
 
794
                  'minimum': '524288',
 
795
                  'type': 'numeric'},
 
796
                { 'default': '8388608',
 
797
                  'inversion': (5, 4, 0),
 
798
                  'maximum': '4294967295',
 
799
                  'minimum': '2097152',
 
800
                  'type': 'numeric'},
 
801
                { 'default': '1048576',
 
802
                  'inversion': (6, 0, 0),
 
803
                  'maximum': '4294967295',
 
804
                  'minimum': '524288',
 
805
                  'type': 'numeric'}],
 
806
    'versions': [ (),
 
807
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
808
                  ()]},
 
809
  { 'caption': 'innodb_autoextend_increment',
 
810
    'description': 'Data file autoextend increment in megabytes',
 
811
    'name': 'innodb_autoextend_increment',
 
812
    'values': [ { 'default': '8',
 
813
                  'maximum': '1000',
 
814
                  'minimum': '1',
 
815
                  'type': 'numeric'},
 
816
                { 'default': '64',
 
817
                  'inversion': (5, 4, 0),
 
818
                  'maximum': '1000',
 
819
                  'minimum': '1',
 
820
                  'outversion': (5, 4, 2),
 
821
                  'type': 'numeric'},
 
822
                { 'default': '8',
 
823
                  'inversion': (5, 4, 3),
 
824
                  'maximum': '1000',
 
825
                  'minimum': '1',
 
826
                  'type': 'numeric'}],
 
827
    'versions': [ ((4, 1, 5),),
 
828
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
829
                  ()]},
 
830
  { 'caption': 'innodb_autoinc_lock_mode',
 
831
    'description': 'Set InnoDB auto-increment lock mode',
 
832
    'name': 'innodb_autoinc_lock_mode',
 
833
    'values': [ { 'choice': ['0', '1', '2'],
 
834
                  'default': '1',
 
835
                  'type': 'numeric'}],
 
836
    'versions': [((5, 1, 22),), ((5, 1), (5, 4), (5, 5), (5, 6), (6, 0)), ()]},
 
837
  { 'caption': 'innodb_buffer_pool_awe_mem_mb',
 
838
    'description': 'If Windows AWE is used, the size in Megabytes of InnoDB buffer pool allocated from the AWE memory',
 
839
    'name': 'innodb_buffer_pool_awe_mem_mb',
 
840
    'values': [ { 'default': '0',
 
841
                  'maximum': '63000',
 
842
                  'minimum': '0',
 
843
                  'platform': 'windows',
 
844
                  'type': 'numeric'}],
 
845
    'versions': [(), ((4, 1), (5, 0), (5, 1)), ((5, 1, 13),)]},
 
846
  { 'caption': 'innodb_buffer_pool_instances',
 
847
    'description': '',
 
848
    'name': 'innodb_buffer_pool_instances',
 
849
    'values': [ { 'default': '1',
 
850
                  'maximum': '64',
 
851
                  'minimum': '1',
 
852
                  'type': 'numeric'}],
 
853
    'versions': [((5, 5, 4),), ((5, 5),), ()]},
 
854
  { 'caption': 'innodb_buffer_pool_size',
 
855
    'description': 'The size of the memory buffer InnoDB uses to cache data and indexes of its tables',
 
856
    'name': 'innodb_buffer_pool_size',
 
857
    'values': [ { 'bitsize': '32',
 
858
                  'default': '134217728',
 
859
                  'maximum': '2**32-1',
 
860
                  'minimum': '1048576',
 
861
                  'type': 'numeric'},
 
862
                { 'bitsize': '64',
 
863
                  'default': '134217728',
 
864
                  'maximum': '2**64-1',
 
865
                  'minimum': '1048576',
 
866
                  'type': 'numeric'}],
 
867
    'versions': [ (),
 
868
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
869
                  ()]},
 
870
  { 'caption': 'innodb_change_buffering',
 
871
    'description': 'Whether InnoDB performs insert buffering.',
 
872
    'name': 'innodb_change_buffering',
 
873
    'values': [ { 'choice': ['inserts', 'none'],
 
874
                  'default': 'inserts',
 
875
                  'outversion': (5, 5, 3),
 
876
                  'type': 'enum'},
 
877
                { 'choice': [ 'inserts',
 
878
                              'deletes',
 
879
                              'purges',
 
880
                              'changes',
 
881
                              'all',
 
882
                              'none'],
 
883
                  'default': 'all',
 
884
                  'inversion': (5, 5, 4),
 
885
                  'type': 'enum'}],
 
886
    'versions': [ ((5, 1, 38), (5, 4, 2)),
 
887
                  ((5, 1), (5, 4), (5, 5), (5, 6)),
 
888
                  ()]},
 
889
  { 'caption': 'innodb_checksums',
 
890
    'description': 'Enable InnoDB checksums validation',
 
891
    'name': 'innodb_checksums',
 
892
    'values': [ { 'default': 'on',
 
893
                  'off': 'off',
 
894
                  'on': 'on',
 
895
                  'type': 'boolean'}],
 
896
    'versions': [ ((5, 0, 3),),
 
897
                  ((5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
898
                  ()]},
 
899
  { 'caption': 'innodb_commit_concurrency',
 
900
    'description': 'Helps in performance tuning in heavily concurrent environments',
 
901
    'name': 'innodb_commit_concurrency',
 
902
    'values': [ { 'default': '0',
 
903
                  'maximum': '1000',
 
904
                  'minimum': '0',
 
905
                  'type': 'numeric'}],
 
906
    'versions': [ ((5, 0, 12),),
 
907
                  ((5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
908
                  ()]},
 
909
  { 'caption': 'innodb_concurrency_tickets',
 
910
    'description': 'Number of times a thread is allowed to enter InnoDB within the same SQL query after it has once got the ticket',
 
911
    'name': 'innodb_concurrency_tickets',
 
912
    'values': [ { 'default': '500',
 
913
                  'maximum': '4294967295',
 
914
                  'minimum': '1',
 
915
                  'type': 'numeric'}],
 
916
    'versions': [ ((5, 0, 3),),
 
917
                  ((5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
918
                  ()]},
 
919
  { 'caption': 'innodb_data_file_path',
 
920
    'description': 'Path to individual files and their sizes',
 
921
    'name': 'innodb_data_file_path',
 
922
    'values': [{ 'type': 'filename'}],
 
923
    'versions': [ (),
 
924
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
925
                  ()]},
 
926
  { 'caption': 'innodb_data_home_dir',
 
927
    'description': 'The common part for InnoDB table spaces',
 
928
    'name': 'innodb_data_home_dir',
 
929
    'values': [{ 'type': 'filename'}],
 
930
    'versions': [ (),
 
931
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
932
                  ()]},
 
933
  { 'caption': 'innodb_doublewrite',
 
934
    'description': 'Enable InnoDB doublewrite buffer',
 
935
    'name': 'innodb_doublewrite',
 
936
    'values': [{ 'off': '0', 'on': '1', 'type': 'boolean'}],
 
937
    'versions': [ ((5, 0, 3),),
 
938
                  ((5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
939
                  ()]},
 
940
  { 'caption': 'innodb_extra_dirty_writes',
 
941
    'description': 'Whether to flush dirty buffer pages when the percentage of dirty pages is less than the maximum dirty percent',
 
942
    'name': 'innodb_extra_dirty_writes',
 
943
    'values': [ { 'default': 'on',
 
944
                  'off': 'off',
 
945
                  'on': 'on',
 
946
                  'type': 'boolean'}],
 
947
    'versions': [(), ((5, 4),), ((5, 4, 2),)]},
 
948
  { 'caption': 'innodb_fast_shutdown',
 
949
    'description': 'Speeds up the shutdown process of the InnoDB storage engine',
 
950
    'name': 'innodb_fast_shutdown',
 
951
    'values': [ { 'choice': ['0', '1', '2'],
 
952
                  'default': '1',
 
953
                  'type': 'numeric'}],
 
954
    'versions': [ (),
 
955
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
956
                  ()]},
 
957
  { 'caption': 'innodb_file_format',
 
958
    'description': 'The format for new InnoDB tables',
 
959
    'name': 'innodb_file_format',
 
960
    'values': [ { 'default': 'Antelope',
 
961
                  'inversion': (5, 1, 38),
 
962
                  'type': 'string'},
 
963
                { 'choice': ['Antelope', 'Barracuda'],
 
964
                  'default': 'Barracuda',
 
965
                  'inversion': (5, 5, 0),
 
966
                  'outversion': (5, 5, 6),
 
967
                  'type': 'string'},
 
968
                { 'choice': ['Antelope', 'Barracuda'],
 
969
                  'default': 'Antelope',
 
970
                  'inversion': (5, 5, 7),
 
971
                  'type': 'string'},
 
972
                { 'choice': ['Antelope', 'Barracuda'],
 
973
                  'default': 'Antelope',
 
974
                  'inversion': (5, 6, 1),
 
975
                  'type': 'string'}],
 
976
    'versions': [ ((5, 1, 38), (5, 4, 2)),
 
977
                  ((5, 1), (5, 4), (5, 5), (5, 6)),
 
978
                  ()]},
 
979
  { 'caption': 'innodb_file_format_check',
 
980
    'description': 'Whether InnoDB performs file format compatibility checking',
 
981
    'name': 'innodb_file_format_check',
 
982
    'values': [ { 'default': 'Antelope',
 
983
                  'outversion': (5, 1, 41),
 
984
                  'type': 'string'},
 
985
                { 'default': 'Barracuda',
 
986
                  'inversion': (5, 1, 42),
 
987
                  'type': 'string'},
 
988
                { 'default': 'Antelope',
 
989
                  'outversion': (5, 5, 0),
 
990
                  'type': 'string'},
 
991
                { 'default': 'Barracuda',
 
992
                  'inversion': (5, 5, 4),
 
993
                  'type': 'string'},
 
994
                { 'default': 'on',
 
995
                  'inversion': (5, 5, 5),
 
996
                  'off': 'off',
 
997
                  'on': 'on',
 
998
                  'type': 'boolean'}],
 
999
    'versions': [ ((5, 1, 38), (5, 4, 2)),
 
1000
                  ((5, 1), (5, 4), (5, 5), (5, 6)),
 
1001
                  ()]},
 
1002
  { 'caption': 'innodb_file_format_max',
 
1003
    'description': 'The file format tag in the shared tablespace',
 
1004
    'name': 'innodb_file_format_max',
 
1005
    'values': [ { 'choice': ['Antelope', 'Barracuda'],
 
1006
                  'default': 'Antelope',
 
1007
                  'type': 'string'}],
 
1008
    'versions': [((5, 5, 5),), ((5, 5), (5, 6)), ()]},
 
1009
  { 'caption': 'innodb_file_io_threads',
 
1010
    'description': 'Number of file I/O threads in InnoDB',
 
1011
    'name': 'innodb_file_io_threads',
 
1012
    'values': [ { 'default': '4',
 
1013
                  'maximum': '64',
 
1014
                  'minimum': '4',
 
1015
                  'type': 'numeric'}],
 
1016
    'versions': [(), ((4, 1), (5, 0), (5, 1), (6, 0)), ()]},
 
1017
  { 'caption': 'innodb_file_per_table',
 
1018
    'description': 'Stores each InnoDB table to an .ibd file in the database dir',
 
1019
    'name': 'innodb_file_per_table',
 
1020
    'values': [ { 'default': 'off',
 
1021
                  'inversion': (4, 1, 1),
 
1022
                  'off': 'off',
 
1023
                  'on': 'on',
 
1024
                  'type': 'boolean'},
 
1025
                { 'default': 'on',
 
1026
                  'inversion': (5, 5, 0),
 
1027
                  'off': 'off',
 
1028
                  'on': 'on',
 
1029
                  'outversion': (5, 5, 6),
 
1030
                  'type': 'boolean'},
 
1031
                { 'default': 'off',
 
1032
                  'inversion': (5, 5, 7),
 
1033
                  'off': 'off',
 
1034
                  'on': 'on',
 
1035
                  'type': 'boolean'},
 
1036
                { 'default': 'off',
 
1037
                  'inversion': (5, 6, 1),
 
1038
                  'off': 'off',
 
1039
                  'on': 'on',
 
1040
                  'type': 'boolean'}],
 
1041
    'versions': [ ((4, 1, 1),),
 
1042
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
1043
                  ()]},
 
1044
  { 'caption': 'innodb_flush_log_at_trx_commit',
 
1045
    'description': 'Set to 0 (write and flush once per second), 1 (write and flush at each commit) or 2 (write at commit, flush once per second)',
 
1046
    'name': 'innodb_flush_log_at_trx_commit',
 
1047
    'values': [ { 'choice': ['0', '1', '2'],
 
1048
                  'default': '1',
 
1049
                  'type': 'numeric'}],
 
1050
    'versions': [ (),
 
1051
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
1052
                  ()]},
 
1053
  { 'caption': 'innodb_flush_method',
 
1054
    'description': 'With which method to flush data',
 
1055
    'name': 'innodb_flush_method',
 
1056
    'values': [ { 'default': 'async_unbuffered',
 
1057
                  'platform': 'windows',
 
1058
                  'type': 'enum'},
 
1059
                { 'choice': ['fdatasync', 'O_DSYNC', 'O_DIRECT'],
 
1060
                  'default': 'fdatasync',
 
1061
                  'outversion': (5, 1, 23),
 
1062
                  'platform': 'linux',
 
1063
                  'type': 'enum'},
 
1064
                { 'choice': ['O_DSYNC', 'O_DIRECT'],
 
1065
                  'default': 'fdatasync',
 
1066
                  'inversion': (5, 1, 24),
 
1067
                  'platform': 'linux',
 
1068
                  'type': 'enum'},
 
1069
                { 'choice': ['fdatasync', 'O_DSYNC', 'O_DIRECT'],
 
1070
                  'default': 'fdatasync',
 
1071
                  'outversion': (5, 1, 23),
 
1072
                  'platform': 'hpux',
 
1073
                  'type': 'enum'},
 
1074
                { 'choice': ['O_DSYNC', 'O_DIRECT'],
 
1075
                  'default': 'fdatasync',
 
1076
                  'inversion': (5, 1, 24),
 
1077
                  'platform': 'hpux',
 
1078
                  'type': 'enum'},
 
1079
                { 'choice': ['fdatasync', 'O_DSYNC', 'O_DIRECT'],
 
1080
                  'default': 'fdatasync',
 
1081
                  'outversion': (5, 1, 23),
 
1082
                  'platform': 'solaris',
 
1083
                  'type': 'enum'},
 
1084
                { 'choice': ['O_DSYNC', 'O_DIRECT'],
 
1085
                  'default': 'fdatasync',
 
1086
                  'inversion': (5, 1, 24),
 
1087
                  'platform': 'solaris',
 
1088
                  'type': 'enum'}],
 
1089
    'versions': [ (),
 
1090
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
1091
                  ()]},
 
1092
  { 'caption': 'innodb_force_recovery',
 
1093
    'description': 'Helps to save your data in case the disk image of the database becomes corrupt',
 
1094
    'name': 'innodb_force_recovery',
 
1095
    'values': [ { 'choice': ['0', '1', '2', '3', '4', '5', '6'],
 
1096
                  'default': '0',
 
1097
                  'type': 'enum'}],
 
1098
    'versions': [ (),
 
1099
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
1100
                  ()]},
 
1101
  { 'caption': 'innodb_io_capacity',
 
1102
    'description': 'The limit on the maximum number of I/O operations per second',
 
1103
    'name': 'innodb_io_capacity',
 
1104
    'values': [ { 'bitsize': '32',
 
1105
                  'default': '200',
 
1106
                  'maximum': '2**32-1',
 
1107
                  'minimum': '100',
 
1108
                  'type': 'numeric'},
 
1109
                { 'bitsize': '64',
 
1110
                  'default': '200',
 
1111
                  'maximum': '2**64-1',
 
1112
                  'minimum': '100',
 
1113
                  'type': 'numeric'}],
 
1114
    'versions': [((5, 1, 38),), ((5, 1), (5, 4), (5, 5), (5, 6)), ()]},
 
1115
  { 'caption': 'innodb_lock_wait_timeout',
 
1116
    'description': 'Timeout in seconds an InnoDB transaction may wait for a lock before being rolled back',
 
1117
    'name': 'innodb_lock_wait_timeout',
 
1118
    'values': [ { 'default': '50',
 
1119
                  'maximum': '1073741824',
 
1120
                  'minimum': '1',
 
1121
                  'type': 'numeric'}],
 
1122
    'versions': [ (),
 
1123
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
1124
                  ()]},
 
1125
  { 'caption': 'innodb_locks_unsafe_for_binlog',
 
1126
    'description': 'Force InnoDB not to use next-key locking. Instead use only row-level locking',
 
1127
    'name': 'innodb_locks_unsafe_for_binlog',
 
1128
    'values': [ { 'default': 'off',
 
1129
                  'off': 'off',
 
1130
                  'on': 'on',
 
1131
                  'type': 'boolean'}],
 
1132
    'versions': [ ((4, 1, 4),),
 
1133
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
1134
                  ()]},
 
1135
  { 'caption': 'innodb_log_arch_dir',
 
1136
    'deprecated': (5, 0, 24),
 
1137
    'description': 'Where full logs should be archived',
 
1138
    'name': 'innodb_log_arch_dir',
 
1139
    'values': [{ 'type': 'filename'}],
 
1140
    'versions': [(), ((4, 1), (5, 0), (5, 1)), ((5, 1, 21),)]},
 
1141
  { 'caption': 'innodb_log_archive',
 
1142
    'description': 'Unused',
 
1143
    'name': 'innodb_log_archive',
 
1144
    'values': [{ 'default': '0', 'type': 'numeric'}],
 
1145
    'versions': [(), ((4, 1), (5, 0), (5, 1)), ((5, 1, 18),)]},
 
1146
  { 'caption': 'innodb_log_buffer_size',
 
1147
    'description': 'The size of the buffer which InnoDB uses to write log to the log files on disk',
 
1148
    'name': 'innodb_log_buffer_size',
 
1149
    'values': [ { 'default': '1048576',
 
1150
                  'maximum': '4294967295',
 
1151
                  'minimum': '1048576',
 
1152
                  'type': 'numeric'},
 
1153
                { 'default': '16777216',
 
1154
                  'inversion': (5, 4, 0),
 
1155
                  'maximum': '4294967295',
 
1156
                  'minimum': '2097152',
 
1157
                  'outversion': (5, 4, 1),
 
1158
                  'type': 'numeric'},
 
1159
                { 'default': '16777216',
 
1160
                  'inversion': (5, 4, 2),
 
1161
                  'maximum': '4294967295',
 
1162
                  'minimum': '262144',
 
1163
                  'outversion': (5, 4, 2),
 
1164
                  'type': 'numeric'},
 
1165
                { 'default': '8388608',
 
1166
                  'inversion': (5, 4, 3),
 
1167
                  'maximum': '4294967295',
 
1168
                  'minimum': '262144',
 
1169
                  'type': 'numeric'},
 
1170
                { 'default': '1048576',
 
1171
                  'inversion': (6, 0, 0),
 
1172
                  'maximum': '4294967295',
 
1173
                  'minimum': '1048576',
 
1174
                  'type': 'numeric'}],
 
1175
    'versions': [ (),
 
1176
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
1177
                  ()]},
 
1178
  { 'caption': 'innodb_log_file_size',
 
1179
    'description': 'Size of each log file in a log group',
 
1180
    'name': 'innodb_log_file_size',
 
1181
    'values': [ { 'default': '5242880',
 
1182
                  'maximum': '4294967295',
 
1183
                  'minimum': '1048576',
 
1184
                  'type': 'numeric'},
 
1185
                { 'default': '134217728',
 
1186
                  'inversion': (5, 4, 0),
 
1187
                  'maximum': '4294967295',
 
1188
                  'minimum': '33554432',
 
1189
                  'outversion': (5, 4, 1),
 
1190
                  'type': 'numeric'},
 
1191
                { 'default': '134217728',
 
1192
                  'inversion': (5, 4, 2),
 
1193
                  'maximum': '4294967295',
 
1194
                  'minimum': '108576',
 
1195
                  'outversion': (5, 4, 2),
 
1196
                  'type': 'numeric'},
 
1197
                { 'default': '5242880',
 
1198
                  'inversion': (5, 4, 3),
 
1199
                  'maximum': '4294967295',
 
1200
                  'minimum': '108576',
 
1201
                  'type': 'numeric'},
 
1202
                { 'default': '5242880',
 
1203
                  'inversion': (6, 0, 0),
 
1204
                  'maximum': '4294967295',
 
1205
                  'minimum': '1048576',
 
1206
                  'type': 'numeric'}],
 
1207
    'versions': [ (),
 
1208
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
1209
                  ()]},
 
1210
  { 'caption': 'innodb_log_files_in_group',
 
1211
    'description': 'Number of InnoDB log files in the log group',
 
1212
    'name': 'innodb_log_files_in_group',
 
1213
    'values': [ { 'default': '2',
 
1214
                  'maximum': '100',
 
1215
                  'minimum': '2',
 
1216
                  'type': 'numeric'},
 
1217
                { 'default': '3',
 
1218
                  'inversion': (5, 4, 0),
 
1219
                  'maximum': '100',
 
1220
                  'minimum': '3',
 
1221
                  'outversion': (5, 4, 2),
 
1222
                  'type': 'numeric'},
 
1223
                { 'default': '2',
 
1224
                  'inversion': (5, 4, 3),
 
1225
                  'maximum': '100',
 
1226
                  'minimum': '2',
 
1227
                  'type': 'numeric'}],
 
1228
    'versions': [ (),
 
1229
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
1230
                  ()]},
 
1231
  { 'caption': 'innodb_log_group_home_dir',
 
1232
    'description': 'Path to InnoDB log files',
 
1233
    'name': 'innodb_log_group_home_dir',
 
1234
    'values': [{ 'type': 'filename'}],
 
1235
    'versions': [ (),
 
1236
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
1237
                  ()]},
 
1238
  { 'caption': 'innodb_max_dirty_pages_pct',
 
1239
    'description': 'Percentage of dirty pages allowed in bufferpool',
 
1240
    'name': 'innodb_max_dirty_pages_pct',
 
1241
    'values': [ { 'default': '90',
 
1242
                  'maximum': '100',
 
1243
                  'minimum': '0',
 
1244
                  'type': 'numeric'},
 
1245
                { 'default': '75',
 
1246
                  'inversion': (5, 4, 0),
 
1247
                  'maximum': '99',
 
1248
                  'minimum': '0',
 
1249
                  'type': 'numeric'},
 
1250
                { 'default': '90',
 
1251
                  'inversion': (6, 0, 0),
 
1252
                  'maximum': '100',
 
1253
                  'minimum': '0',
 
1254
                  'type': 'numeric'}],
 
1255
    'versions': [ (),
 
1256
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
1257
                  ()]},
 
1258
  { 'caption': 'innodb_max_merged_io',
 
1259
    'description': 'The maximum number of background I/O requests to merge to issue a larger I/O request',
 
1260
    'name': 'innodb_max_merged_io',
 
1261
    'values': [{ 'default': '64', 'type': 'numeric'}],
 
1262
    'versions': [(), ((5, 4),), ((5, 4, 2),)]},
 
1263
  { 'caption': 'innodb_max_purge_lag',
 
1264
    'description': 'Desired maximum length of the purge queue (0 = no limit)',
 
1265
    'name': 'innodb_max_purge_lag',
 
1266
    'values': [ { 'default': '0',
 
1267
                  'maximum': '4294967295',
 
1268
                  'minimum': '0',
 
1269
                  'type': 'numeric'}],
 
1270
    'versions': [ ((4, 1, 6),),
 
1271
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
1272
                  ()]},
 
1273
  { 'caption': 'innodb_mirrored_log_groups',
 
1274
    'description': 'Number of identical copies of log groups we keep for the database',
 
1275
    'name': 'innodb_mirrored_log_groups',
 
1276
    'values': [ { 'default': '1',
 
1277
                  'maximum': '10',
 
1278
                  'minimum': '1',
 
1279
                  'type': 'numeric'}],
 
1280
    'versions': [ (),
 
1281
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
1282
                  ()]},
 
1283
  { 'caption': 'innodb_old_blocks_pct',
 
1284
    'description': 'Percentage of the InnoDB buffer pool to reserve for old blocks',
 
1285
    'name': 'innodb_old_blocks_pct',
 
1286
    'values': [ { 'default': '37',
 
1287
                  'maximum': '95',
 
1288
                  'minimum': '5',
 
1289
                  'type': 'numeric'}],
 
1290
    'versions': [((5, 1, 41),), ((5, 1), (5, 5), (5, 6)), ()]},
 
1291
  { 'caption': 'innodb_old_blocks_time',
 
1292
    'description': 'How long (in ms) blocks must remain in old end of InnoDB buffer pool before moving to new end',
 
1293
    'name': 'innodb_old_blocks_time',
 
1294
    'values': [ { 'default': '0',
 
1295
                  'maximum': '2**32-1',
 
1296
                  'minimum': '0',
 
1297
                  'type': 'numeric'}],
 
1298
    'versions': [((5, 1, 41),), ((5, 1), (5, 5), (5, 6)), ()]},
 
1299
  { 'caption': 'innodb_open_files',
 
1300
    'description': 'The maximum number of files that InnoDB keeps open at the same time',
 
1301
    'name': 'innodb_open_files',
 
1302
    'values': [ { 'default': '300',
 
1303
                  'maximum': '4294967295',
 
1304
                  'minimum': '10',
 
1305
                  'type': 'numeric'}],
 
1306
    'versions': [ ((4, 1, 1),),
 
1307
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
1308
                  ()]},
 
1309
  { 'caption': 'innodb_purge_batch_size',
 
1310
    'description': 'Specifies the number of InnoDB redo logs that trigger a purge operation.',
 
1311
    'name': 'innodb_purge_batch_size',
 
1312
    'values': [ { 'default': '20',
 
1313
                  'maximum': '5000',
 
1314
                  'minimum': '1',
 
1315
                  'type': 'numeric'}],
 
1316
    'versions': [((5, 5, 4),), ((5, 5), (5, 6)), ()]},
 
1317
  { 'caption': 'innodb_purge_threads',
 
1318
    'description': 'Specifies whether the InnoDB purge operation should be performed in a separate thread. By default, this operation is part of the InnoDB master thread.',
 
1319
    'name': 'innodb_purge_threads',
 
1320
    'values': [ { 'default': '0',
 
1321
                  'maximum': '1',
 
1322
                  'minimum': '0',
 
1323
                  'type': 'numeric'}],
 
1324
    'versions': [((5, 5, 4),), ((5, 5), (5, 6)), ()]},
 
1325
  { 'caption': 'innodb_read_ahead_threshold',
 
1326
    'description': 'The sensitivity of InnoDB linear read-ahead',
 
1327
    'name': 'innodb_read_ahead_threshold',
 
1328
    'values': [ { 'default': '56',
 
1329
                  'maximum': '64',
 
1330
                  'minimum': '0',
 
1331
                  'type': 'numeric'}],
 
1332
    'versions': [ ((5, 1, 38), (5, 4, 2)),
 
1333
                  ((5, 1), (5, 4), (5, 5), (5, 6)),
 
1334
                  ()]},
 
1335
  { 'caption': 'innodb_read_io_threads',
 
1336
    'description': 'The number of background I/O threads for read prefetch requests',
 
1337
    'name': 'innodb_read_io_threads',
 
1338
    'values': [ { 'default': '4',
 
1339
                  'maximum': '64',
 
1340
                  'minimum': '1',
 
1341
                  'type': 'numeric'}],
 
1342
    'versions': [((5, 1, 38),), ((5, 1), (5, 4), (5, 5), (5, 6)), ()]},
 
1343
  { 'caption': 'innodb_replication_delay',
 
1344
    'description': 'The slave server replication thread delay',
 
1345
    'name': 'innodb_replication_delay',
 
1346
    'values': [ { 'default': '0',
 
1347
                  'maximum': '4294967295',
 
1348
                  'minimum': '0',
 
1349
                  'type': 'numeric'}],
 
1350
    'versions': [ ((5, 1, 38), (5, 4, 2)),
 
1351
                  ((5, 1), (5, 4), (5, 5), (5, 6)),
 
1352
                  ()]},
 
1353
  { 'caption': 'innodb_rollback_on_timeout',
 
1354
    'description': 'Roll back entire transaction on transaction timeout, not just last statement',
 
1355
    'name': 'innodb_rollback_on_timeout',
 
1356
    'values': [],
 
1357
    'versions': [ ((5, 0, 32), (5, 1, 15)),
 
1358
                  ((5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
1359
                  ()]},
 
1360
  { 'caption': 'innodb-safe-binlog',
 
1361
    'deprecated': (5, 0, 3),
 
1362
    'description': 'Truncates the binary log after last nonrolled-back transaction after InnoDB crash recovery',
 
1363
    'name': 'innodb-safe-binlog',
 
1364
    'values': [{ 'off': '0', 'on': '1', 'type': 'boolean'}],
 
1365
    'versions': [((4, 1, 3),), ((4, 1), (5, 0)), ((5, 0, 3),)]},
 
1366
  { 'caption': 'innodb_stats_on_metadata',
 
1367
    'description': 'Enable or disable InnoDB table statistics updates for metadata statements',
 
1368
    'name': 'innodb_stats_on_metadata',
 
1369
    'values': [ { 'default': 'on',
 
1370
                  'off': 'off',
 
1371
                  'on': 'on',
 
1372
                  'type': 'boolean'}],
 
1373
    'versions': [ ((5, 1, 17), (5, 5, 4)),
 
1374
                  ((5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
1375
                  ()]},
 
1376
  { 'caption': 'innodb-status-file',
 
1377
    'description': 'Enable SHOW INNODB STATUS output in the innodb_status.[pid] file',
 
1378
    'name': 'innodb-status-file',
 
1379
    'values': [ { 'default': 'off',
 
1380
                  'off': 'off',
 
1381
                  'on': 'on',
 
1382
                  'type': 'boolean'}],
 
1383
    'versions': [ (),
 
1384
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
1385
                  ()]},
 
1386
  { 'caption': 'innodb_support_xa',
 
1387
    'description': 'Enable InnoDB support for the XA two-phase commit',
 
1388
    'name': 'innodb_support_xa',
 
1389
    'values': [ { 'default': 'true',
 
1390
                  'off': 'false',
 
1391
                  'on': 'true',
 
1392
                  'type': 'boolean'}],
 
1393
    'versions': [ ((5, 0, 3),),
 
1394
                  ((5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
1395
                  ()]},
 
1396
  { 'caption': 'innodb_sync_spin_loops',
 
1397
    'description': 'Count of spin-loop rounds in InnoDB mutexes',
 
1398
    'name': 'innodb_sync_spin_loops',
 
1399
    'values': [ { 'default': '20',
 
1400
                  'maximum': '4294967295',
 
1401
                  'minimum': '0',
 
1402
                  'outversion': (5, 4, 1),
 
1403
                  'type': 'numeric'},
 
1404
                { 'default': '30',
 
1405
                  'inversion': (5, 4, 2),
 
1406
                  'maximum': '4294967295',
 
1407
                  'minimum': '0',
 
1408
                  'type': 'numeric'}],
 
1409
    'versions': [ ((5, 0, 3),),
 
1410
                  ((5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
1411
                  ()]},
 
1412
  { 'caption': 'innodb_spin_wait_delay',
 
1413
    'description': 'The maximum delay between polls for a spin lock',
 
1414
    'name': 'innodb_spin_wait_delay',
 
1415
    'values': [ { 'default': '6',
 
1416
                  'maximum': '4294967295',
 
1417
                  'minimum': '0',
 
1418
                  'type': 'numeric'}],
 
1419
    'versions': [ ((5, 1, 38), (5, 4, 2)),
 
1420
                  ((5, 1), (5, 4), (5, 5), (5, 6)),
 
1421
                  ()]},
 
1422
  { 'caption': 'innodb_stats_sample_pages',
 
1423
    'description': 'The number of index pages to sample for index distribution statistics',
 
1424
    'name': 'innodb_stats_sample_pages',
 
1425
    'values': [ { 'default': '8',
 
1426
                  'maximum': '2**64-1',
 
1427
                  'minimum': '1',
 
1428
                  'type': 'numeric'}],
 
1429
    'versions': [ ((5, 1, 38), (5, 4, 2)),
 
1430
                  ((5, 1), (5, 4), (5, 5), (5, 6)),
 
1431
                  ()]},
 
1432
  { 'caption': 'innodb_strict_mode',
 
1433
    'description': 'Whether InnoDB returns errors rather than warnings for exceptional conditions',
 
1434
    'name': 'innodb_strict_mode',
 
1435
    'values': [ { 'default': 'off',
 
1436
                  'off': 'off',
 
1437
                  'on': 'on',
 
1438
                  'type': 'boolean'}],
 
1439
    'versions': [ ((5, 1, 38), (5, 4, 2)),
 
1440
                  ((5, 1), (5, 4), (5, 5), (5, 6)),
 
1441
                  ()]},
 
1442
  { 'caption': 'innodb_table_locks',
 
1443
    'description': 'Enable InnoDB locking in LOCK TABLES',
 
1444
    'name': 'innodb_table_locks',
 
1445
    'values': [ { 'default': 'true',
 
1446
                  'off': 'false',
 
1447
                  'on': 'true',
 
1448
                  'type': 'boolean'}],
 
1449
    'versions': [ ((4, 1, 2),),
 
1450
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
1451
                  ()]},
 
1452
  { 'caption': 'innodb_thread_concurrency',
 
1453
    'description': 'Sets the maximum number of threads allowed inside InnoDB. Value 0 will disable the thread throttling',
 
1454
    'name': 'innodb_thread_concurrency',
 
1455
    'values': [ { 'default': '8',
 
1456
                  'maximum': '1000',
 
1457
                  'minimum': '1',
 
1458
                  'type': 'numeric'},
 
1459
                { 'default': '20',
 
1460
                  'inversion': (5, 0, 9),
 
1461
                  'maximum': '1000',
 
1462
                  'minimum': '1',
 
1463
                  'type': 'numeric'},
 
1464
                { 'default': '8',
 
1465
                  'inversion': (5, 0, 19),
 
1466
                  'maximum': '1000',
 
1467
                  'minimum': '0',
 
1468
                  'type': 'numeric'},
 
1469
                { 'default': '0',
 
1470
                  'inversion': (5, 4, 0),
 
1471
                  'maximum': '1000',
 
1472
                  'minimum': '0',
 
1473
                  'type': 'numeric'},
 
1474
                { 'default': '8',
 
1475
                  'inversion': (6, 0, 0),
 
1476
                  'maximum': '1000',
 
1477
                  'minimum': '0',
 
1478
                  'type': 'numeric'}],
 
1479
    'versions': [ (),
 
1480
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
1481
                  ()]},
 
1482
  { 'caption': 'innodb_thread_concurrency_timer_based',
 
1483
    'description': 'Whether to use the lock-free method of handling thread concurrency',
 
1484
    'name': 'innodb_thread_concurrency_timer_based',
 
1485
    'values': [ { 'default': 'on',
 
1486
                  'off': 'off',
 
1487
                  'on': 'on',
 
1488
                  'type': 'boolean'}],
 
1489
    'versions': [(), ((5, 4),), ((5, 4, 2),)]},
 
1490
  { 'caption': 'innodb_thread_sleep_delay',
 
1491
    'description': 'Time of innodb thread sleeping before joining InnoDB queue (usec). Value 0 disable a sleep',
 
1492
    'name': 'innodb_thread_sleep_delay',
 
1493
    'values': [ { 'default': '0',
 
1494
                  'inversion': (5, 0, 8),
 
1495
                  'maximum': '4294967295',
 
1496
                  'minimum': '1000',
 
1497
                  'outversion': (5, 0, 18),
 
1498
                  'type': 'numeric'},
 
1499
                { 'default': '0',
 
1500
                  'inversion': (5, 0, 19),
 
1501
                  'maximum': '4294967295',
 
1502
                  'minimum': '1000',
 
1503
                  'outversion': (5, 0, 20),
 
1504
                  'type': 'numeric'},
 
1505
                { 'default': '8', 'inversion': (5, 0, 21), 'type': 'numeric'},
 
1506
                { 'default': '10000',
 
1507
                  'inversion': (5, 1, 0),
 
1508
                  'type': 'numeric'},
 
1509
                { 'default': '10000',
 
1510
                  'maximum': '4294967295',
 
1511
                  'minimum': '0',
 
1512
                  'type': 'numeric'}],
 
1513
    'versions': [ ((5, 0, 3),),
 
1514
                  ((5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
1515
                  ()]},
 
1516
  { 'caption': 'innodb_use_legacy_cardinality_algorithm',
 
1517
    'description': 'Whether to use legacy InnoDB index cardinality calculation algorithm',
 
1518
    'name': 'innodb_use_legacy_cardinality_algorithm',
 
1519
    'values': [ { 'default': 'on',
 
1520
                  'off': 'off',
 
1521
                  'on': 'on',
 
1522
                  'type': 'boolean'}],
 
1523
    'versions': [((5, 0, 82), (5, 1, 35)), ((5, 0), (5, 1)), ()]},
 
1524
  { 'caption': 'innodb_use_native_aio',
 
1525
    'description': 'Whether to disable asynchronous I/O subsystem',
 
1526
    'name': 'innodb_use_native_aio',
 
1527
    'values': [ { 'default': 'on',
 
1528
                  'off': 'off',
 
1529
                  'on': 'on',
 
1530
                  'type': 'boolean'}],
 
1531
    'versions': [((5, 5, 4),), ((5, 5), (5, 6)), ()]},
 
1532
  { 'caption': 'innodb_use_sys_malloc',
 
1533
    'description': 'Whether InnoDB uses the OS or its own memory allocator',
 
1534
    'name': 'innodb_use_sys_malloc',
 
1535
    'values': [ { 'default': 'on',
 
1536
                  'off': 'off',
 
1537
                  'on': 'on',
 
1538
                  'type': 'boolean'}],
 
1539
    'versions': [ ((5, 1, 38), (5, 4, 2)),
 
1540
                  ((5, 1), (5, 4), (5, 5), (5, 6)),
 
1541
                  ()]},
 
1542
  { 'caption': 'innodb_write_io_threads',
 
1543
    'description': 'The number of background I/O threads for writing dirty pages from the buffer cache to disk',
 
1544
    'name': 'innodb_write_io_threads',
 
1545
    'values': [ { 'default': '4',
 
1546
                  'maximum': '64',
 
1547
                  'minimum': '1',
 
1548
                  'type': 'numeric'}],
 
1549
    'versions': [((5, 1, 38),), ((5, 1), (5, 4), (5, 5), (5, 6)), ()]},
 
1550
  { 'caption': 'interactive_timeout',
 
1551
    'description': 'The number of seconds the server waits for activity on an interactive connection before closing it',
 
1552
    'name': 'interactive_timeout',
 
1553
    'values': [{ 'default': '28800', 'minimum': '1', 'type': 'numeric'}],
 
1554
    'versions': [ (),
 
1555
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
1556
                  ()]},
 
1557
  { 'caption': 'isam',
 
1558
    'deprecated': None,
 
1559
    'description': 'Obsolete. ISAM storage engine is no longer supported',
 
1560
    'name': 'isam',
 
1561
    'values': [ { 'default': 'false',
 
1562
                  'off': 'false',
 
1563
                  'on': 'true',
 
1564
                  'type': 'boolean'}],
 
1565
    'versions': [(), ((4, 1),), ()]},
 
1566
  { 'caption': 'join_buffer_size',
 
1567
    'description': 'The size of the buffer that is used for full joins',
 
1568
    'name': 'join_buffer_size',
 
1569
    'values': [ { 'bitsize': '32',
 
1570
                  'default': '131072',
 
1571
                  'maximum': '4294967295',
 
1572
                  'minimum': '8200',
 
1573
                  'outversion': (6, 0, 8),
 
1574
                  'type': 'numeric'},
 
1575
                { 'bitsize': '32',
 
1576
                  'default': '131072',
 
1577
                  'inversion': (6, 0, 9),
 
1578
                  'maximum': '4294967295',
 
1579
                  'minimum': '128',
 
1580
                  'type': 'numeric'},
 
1581
                { 'bitsize': '64',
 
1582
                  'default': '131072',
 
1583
                  'maximum': '18446744073709547520',
 
1584
                  'minimum': '8200',
 
1585
                  'outversion': (6, 0, 8),
 
1586
                  'type': 'numeric'},
 
1587
                { 'bitsize': '64',
 
1588
                  'default': '131072',
 
1589
                  'inversion': (6, 0, 9),
 
1590
                  'maximum': '18446744073709547520',
 
1591
                  'minimum': '128',
 
1592
                  'type': 'numeric'}],
 
1593
    'versions': [ (),
 
1594
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
1595
                  ()]},
 
1596
  { 'caption': 'join_cache_level',
 
1597
    'description': 'How join buffers are used',
 
1598
    'name': 'join_cache_level',
 
1599
    'values': [ { 'default': '1',
 
1600
                  'maximum': '8',
 
1601
                  'minimum': '0',
 
1602
                  'type': 'numeric'}],
 
1603
    'versions': [((6, 0, 9),), ((6, 0),), ((6, 0, 14),)]},
 
1604
  { 'caption': 'keep_files_on_create',
 
1605
    'description': 'Do not overwrite existing .MYD/.MYI files in default database directory',
 
1606
    'name': 'keep_files_on_create',
 
1607
    'values': [ { 'default': 'off',
 
1608
                  'off': 'off',
 
1609
                  'on': 'on',
 
1610
                  'type': 'boolean'}],
 
1611
    'versions': [ ((5, 0, 48), (5, 1, 21)),
 
1612
                  ((5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
1613
                  ()]},
 
1614
  { 'caption': 'key_buffer_size',
 
1615
    'description': 'The size of the buffer used for index blocks for MyISAM tables',
 
1616
    'name': 'key_buffer_size',
 
1617
    'values': [ { 'default': '8388608',
 
1618
                  'maximum': '4294967295',
 
1619
                  'minimum': '8',
 
1620
                  'outversion': (5, 1, 22),
 
1621
                  'type': 'numeric'},
 
1622
                { 'bitsize': '32',
 
1623
                  'default': '8388608',
 
1624
                  'inversion': (5, 1, 23),
 
1625
                  'maximum': '4294967295',
 
1626
                  'minimum': '8',
 
1627
                  'type': 'numeric'},
 
1628
                { 'bitsize': '64',
 
1629
                  'default': '8388608',
 
1630
                  'inversion': (5, 1, 23),
 
1631
                  'maximum': 'OS_PER_PROCESS_LIMIT',
 
1632
                  'minimum': '8',
 
1633
                  'type': 'numeric'}],
 
1634
    'versions': [ (),
 
1635
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
1636
                  ()]},
 
1637
  { 'caption': 'key_cache_age_threshold',
 
1638
    'description': 'This characterizes the number of hits a hot block has to be untouched until it is considered aged enough to be downgraded to a warm block. This specifies the percentage ratio of that number of hits to the total number of blocks in key cache',
 
1639
    'name': 'key_cache_age_threshold',
 
1640
    'values': [ { 'bitsize': '32',
 
1641
                  'default': '300',
 
1642
                  'maximum': '4294967295',
 
1643
                  'minimum': '100',
 
1644
                  'type': 'numeric'},
 
1645
                { 'bitsize': '64',
 
1646
                  'default': '300',
 
1647
                  'maximum': '18446744073709547520',
 
1648
                  'minimum': '100',
 
1649
                  'type': 'numeric'}],
 
1650
    'versions': [ ((4, 1, 1),),
 
1651
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
1652
                  ()]},
 
1653
  { 'caption': 'key_cache_block_size',
 
1654
    'description': 'The default size of key cache blocks',
 
1655
    'name': 'key_cache_block_size',
 
1656
    'values': [ { 'default': '1024',
 
1657
                  'maximum': '16384',
 
1658
                  'minimum': '512',
 
1659
                  'type': 'numeric'}],
 
1660
    'versions': [ ((4, 1, 1),),
 
1661
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
1662
                  ()]},
 
1663
  { 'caption': 'key_cache_division_limit',
 
1664
    'description': 'The minimum percentage of warm blocks in key cache',
 
1665
    'name': 'key_cache_division_limit',
 
1666
    'values': [ { 'default': '100',
 
1667
                  'maximum': '100',
 
1668
                  'minimum': '1',
 
1669
                  'type': 'numeric'}],
 
1670
    'versions': [ ((4, 1, 1),),
 
1671
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
1672
                  ()]},
 
1673
  { 'caption': 'language',
 
1674
    'deprecated': (5, 5, 0),
 
1675
    'description': 'Client error messages in given language. May be given as a full path',
 
1676
    'name': 'language',
 
1677
    'values': [ { 'default': '/usr/local/mysql/share/mysql/english/',
 
1678
                  'type': 'dirname'}],
 
1679
    'versions': [(), ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (6, 0)), ()]},
 
1680
  { 'caption': 'large-pages',
 
1681
    'description': 'Enable support for large pages',
 
1682
    'name': 'large-pages',
 
1683
    'values': [ { 'default': 'false',
 
1684
                  'off': 'false',
 
1685
                  'on': 'true',
 
1686
                  'platform': 'linux',
 
1687
                  'type': 'boolean'}],
 
1688
    'versions': [ ((5, 0, 3),),
 
1689
                  ((5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
1690
                  ()]},
 
1691
  { 'caption': 'lc-messages',
 
1692
    'description': 'The locale for error messages',
 
1693
    'name': 'lc-messages',
 
1694
    'values': [{ 'type': 'string'}],
 
1695
    'versions': [((6, 0, 14),), ((5, 5), (5, 6), (6, 0)), ()]},
 
1696
  { 'caption': 'lc-messages-dir',
 
1697
    'description': 'The directory where error messages are located',
 
1698
    'name': 'lc-messages-dir',
 
1699
    'values': [{ 'type': 'dirname'}],
 
1700
    'versions': [((6, 0, 14),), ((5, 5), (5, 6), (6, 0)), ()]},
 
1701
  { 'caption': 'local-infile',
 
1702
    'description': 'Enable/disable LOAD DATA LOCAL INFILE (takes values 1|0)',
 
1703
    'name': 'local-infile',
 
1704
    'values': [{ 'default': 'true',
 
1705
                  'off': '0',
 
1706
                  'on': '1',
 
1707
                  'type': 'boolean'}],
 
1708
    'versions': [ (),
 
1709
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
1710
                  ()]},
 
1711
  { 'caption': 'lock_wait_timeout',
 
1712
    'description': 'Timeout for metadata locks',
 
1713
    'name': 'lock_wait_timeout',
 
1714
    'values': [ { 'default': '31536000',
 
1715
                  'maximum': '31536000',
 
1716
                  'minimum': '1',
 
1717
                  'type': 'numeric'}],
 
1718
    'versions': [((5, 5, 3), (6, 0, 14)), ((5, 5), (5, 6), (6, 0)), ()]},
 
1719
  { 'caption': 'log',
 
1720
    'deprecated': (5, 1, 29),
 
1721
    'description': 'Log connections and queries to file',
 
1722
    'name': 'log',
 
1723
    'values': [{ 'default': 'OFF', 'type': 'string'}],
 
1724
    'versions': [ (),
 
1725
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
1726
                  ()]},
 
1727
  { 'caption': 'log-backup-output',
 
1728
    'description': 'The destination for MySQL Backup history and progress log output. Syntax: log-backup-output[=value[,value...]], where "value" could be TABLE, FILE, or NONE',
 
1729
    'name': 'log-backup-output',
 
1730
    'values': [ { 'choice': ['TABLE', 'FILE', 'NONE'],
 
1731
                  'default': 'TABLE',
 
1732
                  'type': 'set'}],
 
1733
    'versions': [((6, 0, 8),), ((5, 6), (6, 0)), ()]},
 
1734
  { 'caption': 'log-bin',
 
1735
    'description': 'Enables binary log',
 
1736
    'name': 'log-bin',
 
1737
    'values': [{ 'default': 'OFF', 'type': 'filename'}],
 
1738
    'versions': [ (),
 
1739
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
1740
                  ()]},
 
1741
  { 'caption': 'log-bin-index',
 
1742
    'description': 'File that holds the names for last binary log files',
 
1743
    'name': 'log-bin-index',
 
1744
    'values': [{ 'default': 'OFF', 'type': 'filename'}],
 
1745
    'versions': [ (),
 
1746
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
1747
                  ()]},
 
1748
  { 'caption': 'log-bin-trust-function-creators',
 
1749
    'description': 'If equal to 0 (the default), then when --log-bin is used, creation of a stored function is allowed only to users having the SUPER privilege and only if the function created does not break binary logging',
 
1750
    'name': 'log-bin-trust-function-creators',
 
1751
    'values': [ { 'default': 'false',
 
1752
                  'off': 'false',
 
1753
                  'on': 'true',
 
1754
                  'type': 'boolean'}],
 
1755
    'versions': [ ((5, 0, 16),),
 
1756
                  ((5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
1757
                  ()]},
 
1758
  { 'caption': 'log-bin-trust-routine-creators',
 
1759
    'deprecated': (5, 0, 16),
 
1760
    'description': '(deprecated) Use log-bin-trust-function-creators',
 
1761
    'name': 'log-bin-trust-routine-creators',
 
1762
    'values': [ { 'default': 'false',
 
1763
                  'off': 'false',
 
1764
                  'on': 'true',
 
1765
                  'type': 'boolean'}],
 
1766
    'versions': [ ((5, 0, 6),),
 
1767
                  ((5, 0), (5, 1), (5, 2), (5, 4), (5, 5), (5, 6)),
 
1768
                  ((5, 2, 5), (5, 5, 3))]},
 
1769
  { 'caption': 'log-error',
 
1770
    'description': 'Error log file',
 
1771
    'name': 'log-error',
 
1772
    'values': [{ 'type': 'filename'}],
 
1773
    'versions': [ (),
 
1774
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
1775
                  ()]},
 
1776
  { 'caption': 'log-isam',
 
1777
    'description': 'Log all MyISAM changes to file',
 
1778
    'name': 'log-isam',
 
1779
    'values': [{ 'type': 'filename'}],
 
1780
    'versions': [ (),
 
1781
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
1782
                  ()]},
 
1783
  { 'caption': 'log-long-format',
 
1784
    'deprecated': (4, 1),
 
1785
    'description': 'Log some extra information to update log. Please note that this option is deprecated; see --log-short-format option',
 
1786
    'name': 'log-long-format',
 
1787
    'values': [],
 
1788
    'versions': [(), ((4, 1),), ()]},
 
1789
  { 'caption': 'log-output',
 
1790
    'description': 'The destination for general query log and slow query log output. Syntax: log-output[=value[,value...]], where "value" could be TABLE, FILE, or NONE',
 
1791
    'name': 'log-output',
 
1792
    'values': [ { 'choice': ['TABLE', 'FILE', 'NONE'],
 
1793
                  'default': 'FILE',
 
1794
                  'type': 'set'}],
 
1795
    'versions': [((5, 1, 6),), ((5, 1), (5, 4), (5, 5), (5, 6), (6, 0)), ()]},
 
1796
  { 'caption': 'log-queries-not-using-indexes',
 
1797
    'description': 'Log queries that are executed without benefit of any index to the slow query log if it is open',
 
1798
    'name': 'log-queries-not-using-indexes',
 
1799
    'values': [{ 'off': '0', 'on': '1', 'type': 'boolean'}],
 
1800
    'versions': [ ((4, 1, 1),),
 
1801
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
1802
                  ()]},
 
1803
  { 'caption': 'log-short-format',
 
1804
    'description': "Don't log extra information to update and slow-query logs",
 
1805
    'name': 'log-short-format',
 
1806
    'values': [ { 'default': 'false',
 
1807
                  'off': 'false',
 
1808
                  'on': 'true',
 
1809
                  'type': 'boolean'}],
 
1810
    'versions': [ (),
 
1811
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
1812
                  ()]},
 
1813
  { 'caption': 'log-slave-updates',
 
1814
    'description': 'This option tells the slave to log the updates performed by its SQL thread to its own binary log',
 
1815
    'name': 'log-slave-updates',
 
1816
    'values': [ { 'default': 'false',
 
1817
                  'off': 'false',
 
1818
                  'on': 'true',
 
1819
                  'type': 'boolean'}],
 
1820
    'versions': [ (),
 
1821
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
1822
                  ()]},
 
1823
  { 'caption': 'log-slow-admin-statements',
 
1824
    'description': 'Log slow OPTIMIZE, ANALYZE, ALTER and other administrative statements to the slow query log if it is open',
 
1825
    'name': 'log-slow-admin-statements',
 
1826
    'values': [ { 'default': 'false',
 
1827
                  'off': 'false',
 
1828
                  'on': 'true',
 
1829
                  'type': 'boolean'}],
 
1830
    'versions': [ ((4, 1, 13),),
 
1831
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
1832
                  ()]},
 
1833
  { 'caption': 'log-slow-queries',
 
1834
    'deprecated': (5, 1, 29),
 
1835
    'description': 'Whether or not to log slow queries. Logging defaults to hostname-slow.log file. Must be enabled to activate other slow query log options',
 
1836
    'name': 'log-slow-queries',
 
1837
    'values': [{ 'off': '0', 'on': '1', 'type': 'boolean'}],
 
1838
    'versions': [ (),
 
1839
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
1840
                  ()]},
 
1841
  { 'caption': 'log-slow-slave-statements',
 
1842
    'description': 'Cause slow statements as executed by the slave to be written to the slow query log',
 
1843
    'name': 'log-slow-slave-statements',
 
1844
    'values': [ { 'default': 'off',
 
1845
                  'off': 'off',
 
1846
                  'on': 'on',
 
1847
                  'type': 'boolean'}],
 
1848
    'versions': [ ((5, 1, 21), (6, 0, 4)),
 
1849
                  ((5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
1850
                  ()]},
 
1851
  { 'caption': 'log-tc',
 
1852
    'description': 'Path to transaction coordinator log (used for transactions that affect more than one storage engine, when binary log is disabled)',
 
1853
    'name': 'log-tc',
 
1854
    'values': [{ 'default': 'tc.log', 'type': 'filename'}],
 
1855
    'versions': [ ((5, 0, 3),),
 
1856
                  ((5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
1857
                  ()]},
 
1858
  { 'caption': 'log-tc-size',
 
1859
    'description': 'Size in KB of transaction coordinator log',
 
1860
    'name': 'log-tc-size',
 
1861
    'values': [ { 'bitsize': '32',
 
1862
                  'default': '24576',
 
1863
                  'maximum': '4294967295',
 
1864
                  'type': 'numeric'},
 
1865
                { 'bitsize': '64',
 
1866
                  'default': '24576',
 
1867
                  'maximum': '18446744073709547520',
 
1868
                  'type': 'numeric'}],
 
1869
    'versions': [ ((5, 0, 3),),
 
1870
                  ((5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
1871
                  ()]},
 
1872
  { 'caption': 'log-warnings',
 
1873
    'description': 'Log some noncritical warnings to the log file',
 
1874
    'disabledby': 'skip-log-warnings',
 
1875
    'name': 'log-warnings',
 
1876
    'values': [ { 'bitsize': '32',
 
1877
                  'default': '1',
 
1878
                  'inversion': (4, 1, 3),
 
1879
                  'maximum': '4294967295',
 
1880
                  'minimum': '0',
 
1881
                  'type': 'numeric'},
 
1882
                { 'bitsize': '64',
 
1883
                  'default': '1',
 
1884
                  'inversion': (4, 1, 3),
 
1885
                  'maximum': '18446744073709547520',
 
1886
                  'minimum': '0',
 
1887
                  'type': 'numeric'}],
 
1888
    'versions': [ (),
 
1889
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
1890
                  ()]},
 
1891
  { 'caption': 'long_query_time',
 
1892
    'description': 'Log all queries that have taken more than long_query_time seconds to execute to file',
 
1893
    'name': 'long_query_time',
 
1894
    'values': [ { 'default': '10',
 
1895
                  'minimum': '1',
 
1896
                  'outversion': (5, 0, 20),
 
1897
                  'type': 'numeric'},
 
1898
                { 'default': '10',
 
1899
                  'inversion': (5, 1, 21),
 
1900
                  'minimum': '0',
 
1901
                  'type': 'numeric'},
 
1902
                { 'default': '10',
 
1903
                  'minimum': '1',
 
1904
                  'outversion': (6, 0, 3),
 
1905
                  'type': 'numeric'},
 
1906
                { 'default': '10',
 
1907
                  'inversion': (6, 0, 4),
 
1908
                  'minimum': '0',
 
1909
                  'type': 'numeric'}],
 
1910
    'versions': [ (),
 
1911
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
1912
                  ()]},
 
1913
  { 'caption': 'low-priority-updates',
 
1914
    'description': 'INSERT/DELETE/UPDATE has lower priority than selects',
 
1915
    'name': 'low-priority-updates',
 
1916
    'values': [ { 'default': 'false',
 
1917
                  'off': 'false',
 
1918
                  'on': 'true',
 
1919
                  'type': 'boolean'}],
 
1920
    'versions': [ (),
 
1921
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
1922
                  ()]},
 
1923
  { 'caption': 'lower_case_table_names',
 
1924
    'description': 'If set to 1, table names are stored in lowercase on disk and table names will be case insensitive. Should be set to 2 if you are using a case-insensitive file system.',
 
1925
    'name': 'lower_case_table_names',
 
1926
    'values': [ { 'default': '0',
 
1927
                  'maximum': '2',
 
1928
                  'minimum': '0',
 
1929
                  'type': 'numeric'}],
 
1930
    'versions': [ (),
 
1931
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
1932
                  ()]},
 
1933
  { 'caption': 'master-bind',
 
1934
    'description': 'The network interface which is to be used for connecting to the master by a replication slave having multiple network connections',
 
1935
    'name': 'master-bind',
 
1936
    'values': [{ 'type': 'string'}],
 
1937
    'versions': [((5, 1, 22),), ((5, 1), (5, 4), (5, 5), (5, 6), (6, 0)), ()]},
 
1938
  { 'caption': 'master-connect-retry',
 
1939
    'deprecated': (5, 1, 17),
 
1940
    'description': 'The number of seconds the slave thread will sleep before retrying to connect to the master in case the master goes down or the connection is lost',
 
1941
    'name': 'master-connect-retry',
 
1942
    'values': [{ 'default': '60', 'type': 'numeric'}],
 
1943
    'versions': [(), ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5)), ((5, 5, 3),)]},
 
1944
  { 'caption': 'master-host',
 
1945
    'deprecated': (5, 1, 17),
 
1946
    'description': 'Master host name or IP address for replication',
 
1947
    'name': 'master-host',
 
1948
    'values': [{ 'type': 'string'}],
 
1949
    'versions': [(), ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5)), ((5, 5, 3),)]},
 
1950
  { 'caption': 'master-info-file',
 
1951
    'description': "The location and name of the file that remembers the master and where the I/O replication thread is in the master's binlogs",
 
1952
    'name': 'master-info-file',
 
1953
    'optype': { 'format': 'master-info-file=file_name'},
 
1954
    'values': [{ 'default': 'master.info', 'type': 'filename'}],
 
1955
    'versions': [ (),
 
1956
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
1957
                  ()]},
 
1958
  { 'caption': 'master-password',
 
1959
    'deprecated': (5, 1, 17),
 
1960
    'description': 'The password the slave thread will authenticate with when connecting to the master',
 
1961
    'name': 'master-password',
 
1962
    'values': [{ 'type': 'string'}],
 
1963
    'versions': [(), ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5)), ((5, 5, 3),)]},
 
1964
  { 'caption': 'master-port',
 
1965
    'deprecated': (5, 1, 17),
 
1966
    'description': 'The port the master is listening on',
 
1967
    'name': 'master-port',
 
1968
    'values': [{ 'default': '3306', 'type': 'numeric'}],
 
1969
    'versions': [(), ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5)), ((5, 5, 3),)]},
 
1970
  { 'caption': 'master-retry-count',
 
1971
    'description': 'The number of tries the slave will make to connect to the master before giving up',
 
1972
    'name': 'master-retry-count',
 
1973
    'values': [ { 'bitsize': '32',
 
1974
                  'default': '86400',
 
1975
                  'maximum': '4294967295',
 
1976
                  'minimum': '0',
 
1977
                  'type': 'numeric'},
 
1978
                { 'bitsize': '64',
 
1979
                  'default': '86400',
 
1980
                  'maximum': '18446744073709551615',
 
1981
                  'minimum': '0',
 
1982
                  'type': 'numeric'}],
 
1983
    'versions': [ (),
 
1984
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
1985
                  ()]},
 
1986
  { 'caption': 'master-ssl',
 
1987
    'deprecated': (5, 1, 17),
 
1988
    'description': 'Enable the slave to connect to the master using SSL',
 
1989
    'name': 'master-ssl',
 
1990
    'values': [ { 'default': 'false',
 
1991
                  'off': 'false',
 
1992
                  'on': 'true',
 
1993
                  'type': 'boolean'}],
 
1994
    'versions': [(), ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5)), ((5, 5, 3),)]},
 
1995
  { 'caption': 'master-ssl-ca',
 
1996
    'deprecated': (5, 1, 17),
 
1997
    'description': 'Master SSL CA file. Only applies if you have enabled master-ssl',
 
1998
    'name': 'master-ssl-ca',
 
1999
    'values': [{ 'type': 'filename'}],
 
2000
    'versions': [(), ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5)), ((5, 5, 3),)]},
 
2001
  { 'caption': 'master-ssl-capath',
 
2002
    'deprecated': (5, 1, 17),
 
2003
    'description': 'Master SSL CA path. Only applies if you have enabled master-ssl',
 
2004
    'name': 'master-ssl-capath',
 
2005
    'values': [{ 'type': 'filename'}],
 
2006
    'versions': [(), ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5)), ((5, 5, 3),)]},
 
2007
  { 'caption': 'master-ssl-cert',
 
2008
    'deprecated': (5, 1, 17),
 
2009
    'description': 'Master SSL certificate file name. Only applies if you have enabled master-ssl',
 
2010
    'name': 'master-ssl-cert',
 
2011
    'values': [{ 'type': 'filename'}],
 
2012
    'versions': [(), ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5)), ((5, 5, 3),)]},
 
2013
  { 'caption': 'master-ssl-cipher',
 
2014
    'deprecated': (5, 1, 17),
 
2015
    'description': 'Master SSL cipher. Only applies if you have enabled master-ssl',
 
2016
    'name': 'master-ssl-cipher',
 
2017
    'values': [{ 'type': 'filename'}],
 
2018
    'versions': [(), ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5)), ((5, 5, 3),)]},
 
2019
  { 'caption': 'master-ssl-key',
 
2020
    'deprecated': (5, 1, 17),
 
2021
    'description': 'Master SSL keyfile name. Only applies if you have enabled master-ssl',
 
2022
    'name': 'master-ssl-key',
 
2023
    'values': [{ 'type': 'filename'}],
 
2024
    'versions': [(), ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5)), ((5, 5, 3),)]},
 
2025
  { 'caption': 'master-user',
 
2026
    'deprecated': (5, 1, 17),
 
2027
    'description': 'The user name the slave thread will use for authentication when connecting to the master. The user must have FILE privilege. If the master user is not set, user test is assumed. The value in master.info will take precedence if it can be read',
 
2028
    'name': 'master-user',
 
2029
    'values': [{ 'default': 'test', 'type': 'string'}],
 
2030
    'versions': [(), ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5)), ((5, 5, 3),)]},
 
2031
  { 'caption': 'max-binlog-dump-events',
 
2032
    'description': 'Option used by mysql-test for debugging and testing of replication',
 
2033
    'name': 'max-binlog-dump-events',
 
2034
    'values': [{ 'default': '0', 'type': 'numeric'}],
 
2035
    'versions': [ (),
 
2036
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
2037
                  ()]},
 
2038
  { 'caption': 'max_allowed_packet',
 
2039
    'description': 'Max packetlength to send/receive from to server',
 
2040
    'name': 'max_allowed_packet',
 
2041
    'values': [ { 'default': '1048576',
 
2042
                  'maximum': '1073741824',
 
2043
                  'minimum': '1024',
 
2044
                  'type': 'numeric'}],
 
2045
    'versions': [ (),
 
2046
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
2047
                  ()]},
 
2048
  { 'caption': 'max_binlog_cache_size',
 
2049
    'description': 'Can be used to restrict the total size used to cache a multi-statement transaction',
 
2050
    'name': 'max_binlog_cache_size',
 
2051
    'values': [ { 'default': '4294967295',
 
2052
                  'maximum': '4294967295',
 
2053
                  'minimum': '4096',
 
2054
                  'outversion': (5, 1, 35),
 
2055
                  'type': 'numeric'},
 
2056
                { 'default': '18446744073709547520',
 
2057
                  'inversion': (5, 1, 36),
 
2058
                  'maximum': '18446744073709547520',
 
2059
                  'minimum': '4096',
 
2060
                  'type': 'numeric'},
 
2061
                { 'default': '4294967295',
 
2062
                  'inversion': (5, 4, 0),
 
2063
                  'maximum': '4294967295',
 
2064
                  'minimum': '4096',
 
2065
                  'outversion': (5, 4, 1),
 
2066
                  'type': 'numeric'},
 
2067
                { 'default': '18446744073709547520',
 
2068
                  'inversion': (5, 4, 2),
 
2069
                  'maximum': '18446744073709547520',
 
2070
                  'minimum': '4096',
 
2071
                  'type': 'numeric'},
 
2072
                { 'default': '4294967295',
 
2073
                  'inversion': (6, 0, 0),
 
2074
                  'maximum': '4294967295',
 
2075
                  'minimum': '4096',
 
2076
                  'type': 'numeric'}],
 
2077
    'versions': [ (),
 
2078
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
2079
                  ()]},
 
2080
  { 'caption': 'max_binlog_size',
 
2081
    'description': 'Binary log will be rotated automatically when the size exceeds this value',
 
2082
    'name': 'max_binlog_size',
 
2083
    'values': [ { 'default': '1073741824',
 
2084
                  'maximum': '1073741824',
 
2085
                  'minimum': '4096',
 
2086
                  'type': 'numeric'}],
 
2087
    'versions': [ (),
 
2088
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
2089
                  ()]},
 
2090
  { 'caption': 'max_binlog_stmt_cache_size',
 
2091
    'description': 'Can be used to restrict the total size used to cache all nontransactional statements during a transaction',
 
2092
    'name': 'max_binlog_stmt_cache_size',
 
2093
    'values': [ { 'default': '18446744073709547520',
 
2094
                  'maximum': '18446744073709547520',
 
2095
                  'minimum': '4096',
 
2096
                  'type': 'numeric'}],
 
2097
    'versions': [((5, 5, 9), (5, 6, 1)), ((5, 5), (5, 6)), ()]},
 
2098
  { 'caption': 'max_connect_errors',
 
2099
    'description': 'If there is more than this number of interrupted connections from a host this host will be blocked from further connections',
 
2100
    'name': 'max_connect_errors',
 
2101
    'values': [ { 'bitsize': '32',
 
2102
                  'default': '10',
 
2103
                  'maximum': '4294967295',
 
2104
                  'minimum': '1',
 
2105
                  'type': 'numeric'},
 
2106
                { 'bitsize': '64',
 
2107
                  'default': '10',
 
2108
                  'maximum': '18446744073709547520',
 
2109
                  'minimum': '1',
 
2110
                  'type': 'numeric'}],
 
2111
    'versions': [ (),
 
2112
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
2113
                  ()]},
 
2114
  { 'caption': 'max_connections',
 
2115
    'description': 'The number of simultaneous clients allowed',
 
2116
    'name': 'max_connections',
 
2117
    'values': [ { 'default': '100',
 
2118
                  'outversion': (5, 1, 14),
 
2119
                  'type': 'numeric'},
 
2120
                { 'default': '151',
 
2121
                  'inversion': (5, 1, 15),
 
2122
                  'maximum': '16384',
 
2123
                  'minimum': '1',
 
2124
                  'type': 'numeric'},
 
2125
                { 'default': '151',
 
2126
                  'inversion': (5, 1, 17),
 
2127
                  'maximum': '100000',
 
2128
                  'minimum': '1',
 
2129
                  'type': 'numeric'}],
 
2130
    'versions': [ (),
 
2131
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
2132
                  ()]},
 
2133
  { 'caption': 'max_delayed_threads',
 
2134
    'description': "Don't start more than this number of threads to handle INSERT DELAYED statements. If set to zero, which means INSERT DELAYED is not used",
 
2135
    'name': 'max_delayed_threads',
 
2136
    'values': [ { 'default': '20',
 
2137
                  'maximum': '16384',
 
2138
                  'minimum': '0',
 
2139
                  'type': 'numeric'}],
 
2140
    'versions': [ (),
 
2141
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
2142
                  ()]},
 
2143
  { 'caption': 'max_error_count',
 
2144
    'description': 'Max number of errors/warnings to store for a statement',
 
2145
    'name': 'max_error_count',
 
2146
    'values': [ { 'default': '64',
 
2147
                  'maximum': '65535',
 
2148
                  'minimum': '0',
 
2149
                  'type': 'numeric'}],
 
2150
    'versions': [ (),
 
2151
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
2152
                  ()]},
 
2153
  { 'caption': 'max_heap_table_size',
 
2154
    'description': "Don't allow creation of heap tables bigger than this",
 
2155
    'name': 'max_heap_table_size',
 
2156
    'values': [ { 'bitsize': '32',
 
2157
                  'default': '16777216',
 
2158
                  'maximum': '4294967295',
 
2159
                  'minimum': '16384',
 
2160
                  'type': 'numeric'},
 
2161
                { 'bitsize': '64',
 
2162
                  'default': '16777216',
 
2163
                  'maximum': '1844674407370954752',
 
2164
                  'minimum': '16384',
 
2165
                  'type': 'numeric'}],
 
2166
    'versions': [ (),
 
2167
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
2168
                  ()]},
 
2169
  { 'caption': 'max_join_size',
 
2170
    'description': 'Joins that are probably going to read more than max_join_size records return an error',
 
2171
    'name': 'max_join_size',
 
2172
    'values': [ { 'default': '4294967295',
 
2173
                  'maximum': '4294967295',
 
2174
                  'minimum': '1',
 
2175
                  'type': 'numeric'},
 
2176
                { 'default': '18446744073709551615',
 
2177
                  'inversion': (5, 5, 0),
 
2178
                  'maximum': '18446744073709551615',
 
2179
                  'minimum': '1',
 
2180
                  'type': 'numeric'}],
 
2181
    'versions': [ (),
 
2182
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
2183
                  ()]},
 
2184
  { 'caption': 'max_length_for_sort_data',
 
2185
    'description': 'Max number of bytes in sorted records',
 
2186
    'name': 'max_length_for_sort_data',
 
2187
    'values': [ { 'default': '1024',
 
2188
                  'maximum': '8388608',
 
2189
                  'minimum': '4',
 
2190
                  'type': 'numeric'}],
 
2191
    'versions': [ ((4, 1, 1),),
 
2192
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
2193
                  ()]},
 
2194
  { 'caption': 'max_prepared_stmt_count',
 
2195
    'description': 'Maximum number of prepared statements in the server',
 
2196
    'name': 'max_prepared_stmt_count',
 
2197
    'optype': { 'inversion': '5.0.21'},
 
2198
    'values': [ { 'default': '16382',
 
2199
                  'maximum': '1048576',
 
2200
                  'minimum': '0',
 
2201
                  'type': 'numeric'}],
 
2202
    'versions': [ ((4, 1, 19), (5, 0, 21), (5, 1, 10)),
 
2203
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
2204
                  ()]},
 
2205
  { 'caption': 'max_relay_log_size',
 
2206
    'description': 'If nonzero, relay log will be rotated automatically when the size exceeds this value',
 
2207
    'name': 'max_relay_log_size',
 
2208
    'values': [ { 'default': '0',
 
2209
                  'maximum': '1073741824',
 
2210
                  'minimum': '0',
 
2211
                  'type': 'numeric'}],
 
2212
    'versions': [ (),
 
2213
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
2214
                  ()]},
 
2215
  { 'caption': 'max_seeks_for_key',
 
2216
    'description': 'Limit assumed max number of seeks when looking up rows based on a key',
 
2217
    'name': 'max_seeks_for_key',
 
2218
    'values': [ { 'bitsize': '32',
 
2219
                  'default': '4294967295',
 
2220
                  'maximum': '4294967295',
 
2221
                  'minimum': '1',
 
2222
                  'type': 'numeric'},
 
2223
                { 'bitsize': '64',
 
2224
                  'default': '18446744073709547520',
 
2225
                  'maximum': '18446744073709547520',
 
2226
                  'minimum': '1',
 
2227
                  'type': 'numeric'}],
 
2228
    'versions': [ (),
 
2229
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
2230
                  ()]},
 
2231
  { 'caption': 'max_sort_length',
 
2232
    'description': 'The number of bytes to use when sorting BLOB or TEXT values',
 
2233
    'name': 'max_sort_length',
 
2234
    'values': [ { 'default': '1024',
 
2235
                  'maximum': '8388608',
 
2236
                  'minimum': '4',
 
2237
                  'type': 'numeric'}],
 
2238
    'versions': [ (),
 
2239
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
2240
                  ()]},
 
2241
  { 'caption': 'max_sp_recursion_depth',
 
2242
    'description': 'Maximum stored procedure recursion depth',
 
2243
    'name': 'max_sp_recursion_depth',
 
2244
    'values': [{ 'default': '0', 'maximum': '255', 'type': 'numeric'}],
 
2245
    'versions': [ ((5, 0, 17),),
 
2246
                  ((5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
2247
                  ()]},
 
2248
  { 'caption': 'max_tmp_tables',
 
2249
    'description': 'Maximum number of temporary tables a client can keep open at a time',
 
2250
    'name': 'max_tmp_tables',
 
2251
    'values': [ { 'bitsize': '32',
 
2252
                  'default': '32',
 
2253
                  'maximum': '4294967295',
 
2254
                  'minimum': '1',
 
2255
                  'type': 'numeric'},
 
2256
                { 'bitsize': '64',
 
2257
                  'default': '32',
 
2258
                  'maximum': '18446744073709547520',
 
2259
                  'minimum': '1',
 
2260
                  'type': 'numeric'}],
 
2261
    'versions': [ (),
 
2262
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
2263
                  ()]},
 
2264
  { 'caption': 'max_user_connections',
 
2265
    'description': 'The maximum number of active connections for a single user (0 = no limit)',
 
2266
    'name': 'max_user_connections',
 
2267
    'values': [ { 'default': '0',
 
2268
                  'maximum': '4294967295',
 
2269
                  'minimum': '0',
 
2270
                  'type': 'numeric'}],
 
2271
    'versions': [ (),
 
2272
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
2273
                  ()]},
 
2274
  { 'caption': 'max_write_lock_count',
 
2275
    'description': 'After this many write locks, allow some read locks to run in between',
 
2276
    'name': 'max_write_lock_count',
 
2277
    'values': [ { 'bitsize': '32',
 
2278
                  'default': '4294967295',
 
2279
                  'maximum': '4294967295',
 
2280
                  'minimum': '1',
 
2281
                  'type': 'numeric'},
 
2282
                { 'bitsize': '64',
 
2283
                  'default': '18446744073709547520',
 
2284
                  'maximum': '18446744073709547520',
 
2285
                  'minimum': '1',
 
2286
                  'type': 'numeric'}],
 
2287
    'versions': [ (),
 
2288
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
2289
                  ()]},
 
2290
  { 'caption': 'memlock',
 
2291
    'description': 'Lock the mysqld process in memory',
 
2292
    'name': 'memlock',
 
2293
    'values': [ { 'default': 'false',
 
2294
                  'off': 'false',
 
2295
                  'on': 'true',
 
2296
                  'type': 'boolean'}],
 
2297
    'versions': [ (),
 
2298
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
2299
                  ()]},
 
2300
  { 'caption': 'merge',
 
2301
    'description': 'Enable Merge storage engine',
 
2302
    'disabledby': 'skip-merge',
 
2303
    'name': 'merge',
 
2304
    'values': [ { 'default': 'true',
 
2305
                  'off': 'disabledby',
 
2306
                  'on': 'true',
 
2307
                  'type': 'boolean'}],
 
2308
    'versions': [ ((4, 1, 21), (5, 0, 24), (5, 1, 12)),
 
2309
                  ((4, 1), (5, 0), (5, 1)),
 
2310
                  ((5, 1, 14),)]},
 
2311
  { 'caption': 'min-examined-row-limit',
 
2312
    'description': 'Queries examining fewer than this number of rows are not logged to slow query log',
 
2313
    'name': 'min-examined-row-limit',
 
2314
    'values': [ { 'bitsize': '32',
 
2315
                  'default': '0',
 
2316
                  'maximum': '4294967295',
 
2317
                  'minimum': '0',
 
2318
                  'type': 'numeric'},
 
2319
                { 'bitsize': '64',
 
2320
                  'default': '0',
 
2321
                  'maximum': '18446744073709547520',
 
2322
                  'minimum': '0',
 
2323
                  'type': 'numeric'}],
 
2324
    'versions': [ ((5, 1, 21), (6, 0, 4)),
 
2325
                  ((5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
2326
                  ()]},
 
2327
  { 'caption': 'skip-isam',
 
2328
    'deprecated': None,
 
2329
    'description': 'Disable the ISAM storage engine',
 
2330
    'name': 'skip-isam',
 
2331
    'values': [{ 'off': 'del', 'on': 'name', 'type': 'boolean'}],
 
2332
    'versions': [((4, 1, 1),), ((4, 1),), ()]},
 
2333
  { 'caption': 'multi_range_count',
 
2334
    'description': 'The maximum number of ranges to send to a table handler at once during range selects',
 
2335
    'name': 'multi_range_count',
 
2336
    'values': [ { 'default': '256',
 
2337
                  'maximum': '4294967295',
 
2338
                  'minimum': '1',
 
2339
                  'type': 'numeric'}],
 
2340
    'versions': [ ((5, 0, 3),),
 
2341
                  ((5, 0), (5, 1), (5, 2)),
 
2342
                  ((5, 2, 4), (6, 0, 3))]},
 
2343
  { 'caption': 'mutex-deadlock-detector',
 
2344
    'description': 'Enable detection of incorrect mutex usage',
 
2345
    'name': 'mutex-deadlock-detector',
 
2346
    'values': [ { 'default': 'true',
 
2347
                  'off': 'false',
 
2348
                  'on': 'true',
 
2349
                  'type': 'boolean'}],
 
2350
    'versions': [((6, 0, 9),), ((6, 0),), ()]},
 
2351
  { 'caption': 'myisam-block-size',
 
2352
    'description': 'Block size to be used for MyISAM index pages',
 
2353
    'name': 'myisam-block-size',
 
2354
    'values': [ { 'default': '1024',
 
2355
                  'maximum': '16384',
 
2356
                  'minimum': '1024',
 
2357
                  'type': 'numeric'}],
 
2358
    'versions': [ (),
 
2359
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
2360
                  ()]},
 
2361
  { 'caption': 'myisam_data_pointer_size',
 
2362
    'description': 'Default pointer size to be used for MyISAM tables',
 
2363
    'name': 'myisam_data_pointer_size',
 
2364
    'values': [ { 'default': '4',
 
2365
                  'maximum': '8',
 
2366
                  'minimum': '2',
 
2367
                  'outversion': (5, 0, 5),
 
2368
                  'type': 'numeric'},
 
2369
                { 'default': '6',
 
2370
                  'inversion': (5, 0, 6),
 
2371
                  'maximum': '7',
 
2372
                  'minimum': '2',
 
2373
                  'type': 'numeric'}],
 
2374
    'versions': [ ((4, 1, 2),),
 
2375
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
2376
                  ()]},
 
2377
  { 'caption': 'myisam_max_extra_sort_file_size',
 
2378
    'deprecated': (5, 0, 6),
 
2379
    'description': 'Deprecated option',
 
2380
    'name': 'myisam_max_extra_sort_file_size',
 
2381
    'optype': { 'outversion': '5.0.6'},
 
2382
    'values': [ { 'default': '2147483648',
 
2383
                  'outversion': (5, 0, 6),
 
2384
                  'type': 'numeric'}],
 
2385
    'versions': [(), ((4, 1), (5, 0)), ()]},
 
2386
  { 'caption': 'myisam_max_sort_file_size',
 
2387
    'description': "Don't use the fast sort index method to create index if the temporary file would get bigger than this",
 
2388
    'name': 'myisam_max_sort_file_size',
 
2389
    'values': [{ 'default': '2147483648', 'type': 'numeric'}],
 
2390
    'versions': [ (),
 
2391
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
2392
                  ()]},
 
2393
  { 'caption': 'myisam_mmap_size',
 
2394
    'description': 'The maximum amount of memory to use for memory mapping compressed MyISAM files.',
 
2395
    'name': 'myisam_mmap_size',
 
2396
    'values': [ { 'bitsize': '32',
 
2397
                  'default': '4294967295',
 
2398
                  'maximum': '4294967295',
 
2399
                  'minimum': '7',
 
2400
                  'type': 'numeric'},
 
2401
                { 'bitsize': '64',
 
2402
                  'default': '18446744073709547520',
 
2403
                  'maximum': '18446744073709547520',
 
2404
                  'minimum': '7',
 
2405
                  'type': 'numeric'}],
 
2406
    'versions': [ ((5, 0, 90), (5, 1, 43), (5, 5, 1), (6, 0, 14)),
 
2407
                  ((5, 0), (5, 1), (5, 5), (5, 6), (6, 0)),
 
2408
                  ()]},
 
2409
  { 'caption': 'myisam-recover',
 
2410
    'description': 'Set the mode for automatic MyISAM recovery',
 
2411
    'name': 'myisam-recover',
 
2412
    'values': [ { 'choice': ['DEFAULT', 'BACKUP', 'FORCE', 'QUICK'],
 
2413
                  'default': 'OFF',
 
2414
                  'type': 'enum'}],
 
2415
    'versions': [ (),
 
2416
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (6, 0)),
 
2417
                  ((5, 5, 3), (6, 0, 14))]},
 
2418
  { 'caption': 'myisam-recover-options',
 
2419
    'description': 'Set the mode for automatic MyISAM recovery',
 
2420
    'name': 'myisam-recover-options',
 
2421
    'values': [ { 'choice': ['OFF', 'DEFAULT', 'BACKUP', 'FORCE', 'QUICK'],
 
2422
                  'default': 'OFF',
 
2423
                  'type': 'enum'}],
 
2424
    'versions': [((5, 5, 3), (6, 0, 14)), ((5, 5), (5, 6), (6, 0)), ()]},
 
2425
  { 'caption': 'myisam_repair_threads',
 
2426
    'description': 'Number of threads to use when repairing MyISAM tables. The value of 1 disables parallel repair',
 
2427
    'name': 'myisam_repair_threads',
 
2428
    'values': [ { 'bitsize': '32',
 
2429
                  'default': '1',
 
2430
                  'maximum': '4294967295',
 
2431
                  'minimum': '1',
 
2432
                  'type': 'numeric'},
 
2433
                { 'bitsize': '64',
 
2434
                  'default': '1',
 
2435
                  'maximum': '18446744073709547520',
 
2436
                  'minimum': '1',
 
2437
                  'type': 'numeric'}],
 
2438
    'versions': [ (),
 
2439
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
2440
                  ()]},
 
2441
  { 'caption': 'myisam_sort_buffer_size',
 
2442
    'description': 'The buffer that is allocated when sorting the index when doing a REPAIR or when creating indexes with CREATE INDEX or ALTER TABLE',
 
2443
    'name': 'myisam_sort_buffer_size',
 
2444
    'values': [ { 'bitsize': '32',
 
2445
                  'default': '8388608',
 
2446
                  'maximum': '4294967295',
 
2447
                  'minimum': '4',
 
2448
                  'type': 'numeric'},
 
2449
                { 'bitsize': '64',
 
2450
                  'default': '8388608',
 
2451
                  'maximum': '18446744073709547520',
 
2452
                  'minimum': '4',
 
2453
                  'type': 'numeric'}],
 
2454
    'versions': [ (),
 
2455
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
2456
                  ()]},
 
2457
  { 'caption': 'myisam_stats_method',
 
2458
    'description': 'Specifies how MyISAM index statistics collection code should treat NULLs',
 
2459
    'name': 'myisam_stats_method',
 
2460
    'values': [ { 'default': 'nulls_unequal',
 
2461
                  'inversion': (4, 1),
 
2462
                  'type': 'enum'},
 
2463
                { 'choice': [ 'nulls_equal',
 
2464
                              'nulls_unequal',
 
2465
                              'nulls_ignored'],
 
2466
                  'inversion': (5, 0),
 
2467
                  'type': 'enum'}],
 
2468
    'versions': [ ((4, 1, 15), (5, 0, 14)),
 
2469
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
2470
                  ()]},
 
2471
  { 'caption': 'myisam_use_mmap',
 
2472
    'description': 'Use memory mapping for reading and writing MyISAM tables',
 
2473
    'name': 'myisam_use_mmap',
 
2474
    'values': [ { 'default': 'off',
 
2475
                  'off': 'off',
 
2476
                  'on': 'on',
 
2477
                  'type': 'boolean'}],
 
2478
    'versions': [((5, 1, 4),), ((5, 1), (5, 4), (5, 5), (5, 6), (6, 0)), ()]},
 
2479
  { 'caption': 'mysql-backup',
 
2480
    'description': 'Enable MySQL Backup features',
 
2481
    'name': 'mysql-backup',
 
2482
    'values': [],
 
2483
    'versions': [((6, 0, 14),), ((5, 6), (6, 0)), ()]},
 
2484
  { 'caption': 'ndb_autoincrement_prefetch_sz',
 
2485
    'description': 'NDB auto-increment prefetch size',
 
2486
    'name': 'ndb_autoincrement_prefetch_sz',
 
2487
    'values': [ { 'default': '32',
 
2488
                  'maximum': '256',
 
2489
                  'minimum': '1',
 
2490
                  'outversion': (5, 0, 54),
 
2491
                  'type': 'numeric'},
 
2492
                { 'default': '1',
 
2493
                  'inversion': (5, 0, 56),
 
2494
                  'maximum': '256',
 
2495
                  'minimum': '1',
 
2496
                  'type': 'numeric'},
 
2497
                { 'default': '32',
 
2498
                  'maximum': '256',
 
2499
                  'minimum': '1',
 
2500
                  'outversion': (5, 1, 22),
 
2501
                  'type': 'numeric'},
 
2502
                { 'default': '1',
 
2503
                  'inversion': (5, 1, 23),
 
2504
                  'maximum': '256',
 
2505
                  'minimum': '1',
 
2506
                  'type': 'numeric'},
 
2507
                { 'default': '32',
 
2508
                  'maximum': '256',
 
2509
                  'minimum': '1',
 
2510
                  'outversion': (5, 1, 22),
 
2511
                  'type': 'numeric'},
 
2512
                { 'default': '1',
 
2513
                  'inversion': (5, 1, 23),
 
2514
                  'maximum': '256',
 
2515
                  'minimum': '1',
 
2516
                  'outversion': (5, 1, 39),
 
2517
                  'type': 'numeric'},
 
2518
                { 'default': '1',
 
2519
                  'inversion': (5, 1, 41),
 
2520
                  'maximum': '65536',
 
2521
                  'minimum': '1',
 
2522
                  'type': 'numeric'},
 
2523
                { 'default': '32',
 
2524
                  'maximum': '256',
 
2525
                  'minimum': '1',
 
2526
                  'outversion': (5, 1, 39),
 
2527
                  'type': 'numeric'},
 
2528
                { 'default': '32',
 
2529
                  'inversion': (5, 1, 41),
 
2530
                  'maximum': '256',
 
2531
                  'minimum': '1',
 
2532
                  'type': 'numeric'},
 
2533
                { 'default': '32',
 
2534
                  'maximum': '256',
 
2535
                  'minimum': '1',
 
2536
                  'outversion': (5, 1, 22),
 
2537
                  'type': 'numeric'},
 
2538
                { 'default': '1',
 
2539
                  'inversion': (5, 1, 23),
 
2540
                  'maximum': '256',
 
2541
                  'minimum': '1',
 
2542
                  'type': 'numeric'}],
 
2543
    'versions': [ ((4, 1, 8),),
 
2544
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
2545
                  ()]},
 
2546
  { 'caption': 'ndb-batch-size',
 
2547
    'description': 'The size (in bytes) to use for NDB transaction batches',
 
2548
    'name': 'ndb-batch-size',
 
2549
    'values': [ { 'default': '32768',
 
2550
                  'maximum': '31536000',
 
2551
                  'minimum': '0',
 
2552
                  'type': 'numeric'}],
 
2553
    'versions': [((5, 1, 23),), ((5, 1),), ()]},
 
2554
  { 'caption': 'ndb-blob-read-batch-bytes',
 
2555
    'description': 'Specifies the size in bytes that large BLOB reads should be batched into. 0 = no limit.',
 
2556
    'name': 'ndb-blob-read-batch-bytes',
 
2557
    'values': [ { 'default': '65535',
 
2558
                  'maximum': '4294967295',
 
2559
                  'minimum': '0',
 
2560
                  'type': 'numeric'}],
 
2561
    'versions': [((5, 1, 51),), ((5, 1),), ()]},
 
2562
  { 'caption': 'ndb-blob-write-batch-bytes',
 
2563
    'description': 'Specifies the size in bytes that large BLOB writes should be batched into. 0 = no limit.',
 
2564
    'name': 'ndb-blob-write-batch-bytes',
 
2565
    'values': [ { 'default': '65535',
 
2566
                  'maximum': '4294967295',
 
2567
                  'minimum': '0',
 
2568
                  'type': 'numeric'}],
 
2569
    'versions': [((5, 1, 51),), ((5, 1),), ()]},
 
2570
  { 'caption': 'ndb_cache_check_time',
 
2571
    'description': 'The number of milliseconds between checks of cluster SQL nodes made by the MySQL query cache',
 
2572
    'name': 'ndb_cache_check_time',
 
2573
    'values': [{ 'default': '0', 'type': 'numeric'}],
 
2574
    'versions': [(), ((4, 1), (5, 0), (5, 1)), ()]},
 
2575
  { 'caption': 'ndb-cluster-connection-pool',
 
2576
    'description': 'The number of connections to the cluster used by MySQL',
 
2577
    'name': 'ndb-cluster-connection-pool',
 
2578
    'values': [ { 'default': '1',
 
2579
                  'maximum': '63',
 
2580
                  'minimum': '1',
 
2581
                  'type': 'numeric'}],
 
2582
    'versions': [((5, 1, 19),), ((5, 1),), ()]},
 
2583
  { 'caption': 'ndb-connectstring',
 
2584
    'description': 'The management server that distributes the cluster configuration',
 
2585
    'name': 'ndb-connectstring',
 
2586
    'values': [{ 'type': 'string'}],
 
2587
    'versions': [(), ((5, 1),), ()]},
 
2588
  { 'caption': 'ndb_extra_logging',
 
2589
    'description': 'Controls logging of MySQL Cluster schema, connection, and data distribution events in the MySQL error log',
 
2590
    'name': 'ndb_extra_logging',
 
2591
    'values': [{ 'default': '0', 'type': 'numeric'}],
 
2592
    'versions': [((5, 1, 6),), ((5, 1),), ()]},
 
2593
  { 'caption': 'ndb_force_send',
 
2594
    'description': 'Forces sending of buffers to NDB immediately, without waiting for other threads',
 
2595
    'name': 'ndb_force_send',
 
2596
    'values': [ { 'default': 'true',
 
2597
                  'off': 'false',
 
2598
                  'on': 'true',
 
2599
                  'type': 'boolean'}],
 
2600
    'versions': [((4, 1, 8),), ((4, 1), (5, 0), (5, 1)), ()]},
 
2601
  { 'caption': 'ndb-log-apply-status',
 
2602
    'description': 'Cause a MySQL server acting as a slave to log mysql.ndb_apply_status updates received from its immediate master in its own binary log, using its own server ID. Effective only if the server is started with the --ndbcluster option.',
 
2603
    'name': 'ndb-log-apply-status',
 
2604
    'values': [ { 'default': 'on',
 
2605
                  'off': 'off',
 
2606
                  'on': 'on',
 
2607
                  'type': 'boolean'}],
 
2608
    'versions': [((5, 1, 51),), ((5, 1),), ()]},
 
2609
  { 'caption': 'ndb_log_updated_only',
 
2610
    'description': 'Log complete rows (ON) or updates only (OFF)',
 
2611
    'name': 'ndb_log_updated_only',
 
2612
    'values': [ { 'default': 'on',
 
2613
                  'off': 'off',
 
2614
                  'on': 'on',
 
2615
                  'type': 'boolean'}],
 
2616
    'versions': [((5, 1, 19),), ((5, 1),), ()]},
 
2617
  { 'caption': 'ndb-log-update-as-write',
 
2618
    'description': 'Toggles logging of updates on the master between updates (OFF) and writes (ON)',
 
2619
    'name': 'ndb-log-update-as-write',
 
2620
    'values': [ { 'default': 'on',
 
2621
                  'off': 'off',
 
2622
                  'on': 'on',
 
2623
                  'type': 'boolean'}],
 
2624
    'versions': [((5, 1, 19),), ((5, 1),), ()]},
 
2625
  { 'caption': 'ndb_log_empty_epochs',
 
2626
    'description': 'When used, causes epochs in which there were no changes to be written to the ndb_apply_status and ndb_binlog_index tables even when --log-slave-updates is enabled.',
 
2627
    'name': 'ndb_log_empty_epochs',
 
2628
    'values': [ { 'default': 'off',
 
2629
                  'off': 'off',
 
2630
                  'on': 'on',
 
2631
                  'type': 'boolean'}],
 
2632
    'versions': [((5, 1, 31),), ((5, 1),), ()]},
 
2633
  { 'caption': 'ndb-nodeid',
 
2634
    'description': 'MySQL Cluster node ID for this MySQL server',
 
2635
    'name': 'ndb-nodeid',
 
2636
    'values': [ { 'inversion': (5, 0, 45),
 
2637
                  'maximum': '63',
 
2638
                  'minimum': '1',
 
2639
                  'type': 'numeric'},
 
2640
                { 'inversion': (5, 1, 5),
 
2641
                  'maximum': '255',
 
2642
                  'minimum': '1',
 
2643
                  'type': 'numeric'}],
 
2644
    'versions': [((5, 0, 45), (5, 1, 15)), ((5, 0), (5, 1)), ()]},
 
2645
  { 'caption': 'ndb-mgmd-host',
 
2646
    'description': 'Set the host (and port, if desired) for connecting to the management server',
 
2647
    'name': 'ndb-mgmd-host',
 
2648
    'values': [{ 'default': 'localhost:1186', 'type': 'string'}],
 
2649
    'versions': [(), ((5, 0), (5, 1)), ()]},
 
2650
  { 'caption': 'ndb-wait-connected',
 
2651
    'description': 'Time (in seconds) for the MySQL server to wait for connection to cluster management and data nodes before accepting MySQL client connections.',
 
2652
    'name': 'ndb-wait-connected',
 
2653
    'values': [ { 'default': '0',
 
2654
                  'maximum': '31536000',
 
2655
                  'minimum': '0',
 
2656
                  'type': 'numeric'}],
 
2657
    'versions': [((5, 1, 16),), ((5, 1),), ()]},
 
2658
  { 'caption': 'ndb-wait-setup',
 
2659
    'description': 'Time (in seconds) for the MySQL server to wait for NDB engine setup to complete.',
 
2660
    'name': 'ndb-wait-setup',
 
2661
    'values': [ { 'default': '15',
 
2662
                  'maximum': '31536000',
 
2663
                  'minimum': '0',
 
2664
                  'type': 'numeric'}],
 
2665
    'versions': [((5, 1, 39),), ((5, 1),), ()]},
 
2666
  { 'caption': 'ndbcluster',
 
2667
    'description': 'Enable NDB Cluster (if this version of MySQL supports it)',
 
2668
    'disabledby': 'skip-ndbcluster',
 
2669
    'name': 'ndbcluster',
 
2670
    'values': [ { 'default': 'false',
 
2671
                  'off': 'disabledby',
 
2672
                  'on': 'true',
 
2673
                  'type': 'boolean'}],
 
2674
    'versions': [(), ((4, 1), (5, 0), (5, 1)), ()]},
 
2675
  { 'caption': 'net_buffer_length',
 
2676
    'description': 'Buffer length for TCP/IP and socket communication',
 
2677
    'name': 'net_buffer_length',
 
2678
    'values': [ { 'default': '16384',
 
2679
                  'maximum': '1048576',
 
2680
                  'minimum': '1024',
 
2681
                  'type': 'numeric'}],
 
2682
    'versions': [ (),
 
2683
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
2684
                  ()]},
 
2685
  { 'caption': 'net_read_timeout',
 
2686
    'description': 'Number of seconds to wait for more data from a connection before aborting the read',
 
2687
    'name': 'net_read_timeout',
 
2688
    'values': [{ 'default': '30', 'minimum': '1', 'type': 'numeric'}],
 
2689
    'versions': [ (),
 
2690
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
2691
                  ()]},
 
2692
  { 'caption': 'net_retry_count',
 
2693
    'description': 'If a read on a communication port is interrupted, retry this many times before giving up',
 
2694
    'name': 'net_retry_count',
 
2695
    'values': [ { 'bitsize': '32',
 
2696
                  'default': '10',
 
2697
                  'maximum': '4294967295',
 
2698
                  'minimum': '1',
 
2699
                  'type': 'numeric'},
 
2700
                { 'bitsize': '64',
 
2701
                  'default': '10',
 
2702
                  'maximum': '18446744073709547520',
 
2703
                  'minimum': '1',
 
2704
                  'type': 'numeric'}],
 
2705
    'versions': [ (),
 
2706
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
2707
                  ()]},
 
2708
  { 'caption': 'net_write_timeout',
 
2709
    'description': 'Number of seconds to wait for a block to be written to a connection before aborting the write',
 
2710
    'name': 'net_write_timeout',
 
2711
    'values': [{ 'default': '60', 'minimum': '1', 'type': 'numeric'}],
 
2712
    'versions': [ (),
 
2713
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
2714
                  ()]},
 
2715
  { 'caption': 'new',
 
2716
    'description': "Use very new, possibly 'unsafe' functions",
 
2717
    'disabledby': 'skip-new',
 
2718
    'name': 'new',
 
2719
    'values': [ { 'default': 'false',
 
2720
                  'off': 'disabledby',
 
2721
                  'on': 'true',
 
2722
                  'type': 'boolean'}],
 
2723
    'versions': [ (),
 
2724
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
2725
                  ()]},
 
2726
  { 'caption': 'old-protocol',
 
2727
    'description': 'Use old server behaviors',
 
2728
    'name': 'old-protocol',
 
2729
    'values': [ { 'default': 'false',
 
2730
                  'off': 'false',
 
2731
                  'on': 'true',
 
2732
                  'type': 'boolean'}],
 
2733
    'versions': [(), ((4, 1),), ((4, 1, 1),)]},
 
2734
  { 'caption': 'old-alter-table',
 
2735
    'description': 'Use old, nonoptimized alter table',
 
2736
    'name': 'old-alter-table',
 
2737
    'values': [ { 'default': 'off',
 
2738
                  'off': 'off',
 
2739
                  'on': 'on',
 
2740
                  'type': 'boolean'}],
 
2741
    'versions': [(), ((5, 1), (5, 4), (5, 5), (5, 6), (6, 0)), ()]},
 
2742
  { 'caption': 'old-passwords',
 
2743
    'description': 'Use old password encryption method (needed for 4.0 and older clients)',
 
2744
    'name': 'old-passwords',
 
2745
    'values': [ { 'default': 'false',
 
2746
                  'off': 'false',
 
2747
                  'on': 'true',
 
2748
                  'type': 'boolean'}],
 
2749
    'versions': [ (),
 
2750
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
2751
                  ()]},
 
2752
  { 'caption': 'old-style-user-limits',
 
2753
    'description': 'Enable old-style user limits (before 5.0.3, user resources were counted per each user+host vs. per account)',
 
2754
    'name': 'old-style-user-limits',
 
2755
    'values': [ { 'default': 'false',
 
2756
                  'off': 'false',
 
2757
                  'on': 'true',
 
2758
                  'type': 'boolean'}],
 
2759
    'versions': [ ((5, 0, 3),),
 
2760
                  ((5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
2761
                  ()]},
 
2762
  { 'caption': 'open-files-limit',
 
2763
    'description': 'If this is not 0, then mysqld will use this value to reserve file descriptors to use with setrlimit()',
 
2764
    'name': 'open-files-limit',
 
2765
    'values': [ { 'default': '0',
 
2766
                  'maximum': '65535',
 
2767
                  'minimum': '0',
 
2768
                  'type': 'numeric'}],
 
2769
    'versions': [ (),
 
2770
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
2771
                  ()]},
 
2772
  { 'caption': 'optimizer_join_cache_level',
 
2773
    'description': 'How join buffers are used',
 
2774
    'name': 'optimizer_join_cache_level',
 
2775
    'values': [ { 'default': '4',
 
2776
                  'maximum': '4',
 
2777
                  'minimum': '0',
 
2778
                  'type': 'numeric'},
 
2779
                { 'default': '1',
 
2780
                  'inversion': (6, 0, 14),
 
2781
                  'maximum': '8',
 
2782
                  'minimum': '0',
 
2783
                  'type': 'numeric'}],
 
2784
    'versions': [((5, 6, 1), (6, 0, 14)), ((5, 6), (6, 0)), ()]},
 
2785
  { 'caption': 'optimizer_prune_level',
 
2786
    'description': 'Controls the heuristic(s) applied during query optimization to prune less-promising partial plans from the optimizer search space',
 
2787
    'name': 'optimizer_prune_level',
 
2788
    'values': [{ 'default': '1', 'off': '0', 'on': '1', 'type': 'boolean'}],
 
2789
    'versions': [ ((5, 0, 1),),
 
2790
                  ((5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
2791
                  ()]},
 
2792
  { 'caption': 'optimizer_search_depth',
 
2793
    'description': 'Maximum depth of search performed by the query optimizer',
 
2794
    'name': 'optimizer_search_depth',
 
2795
    'values': [ { 'default': '62', 'type': 'numeric'},
 
2796
                { 'default': '62',
 
2797
                  'maximum': '63',
 
2798
                  'minimum': '0',
 
2799
                  'outversion': (5, 5, 99),
 
2800
                  'type': 'numeric'},
 
2801
                { 'default': '62',
 
2802
                  'inversion': (5, 6),
 
2803
                  'maximum': '62',
 
2804
                  'minimum': '0',
 
2805
                  'type': 'numeric'},
 
2806
                { 'default': '62',
 
2807
                  'inversion': (6, 0, 0),
 
2808
                  'maximum': '63',
 
2809
                  'minimum': '0',
 
2810
                  'outversion': (6, 0, 13),
 
2811
                  'type': 'numeric'},
 
2812
                { 'default': '62',
 
2813
                  'inversion': (6, 0, 14),
 
2814
                  'maximum': '62',
 
2815
                  'minimum': '0',
 
2816
                  'type': 'numeric'}],
 
2817
    'versions': [ ((5, 0, 1),),
 
2818
                  ((5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
2819
                  ()]},
 
2820
  { 'caption': 'optimizer_switch',
 
2821
    'description': 'Enable control over which optimizations to use',
 
2822
    'name': 'optimizer_switch',
 
2823
    'optype': { 'inversion': '5.1.34'},
 
2824
    'values': [ { 'choice': [ 'index_merge={on|off}',
 
2825
                              'index_merge_intersection={on|off}',
 
2826
                              'index_merge_sort_union={on|off}',
 
2827
                              'index_merge_union={on|off}'],
 
2828
                  'outversion': (5, 2, 3),
 
2829
                  'type': 'set'},
 
2830
                { 'choice': ['no_semijoin', 'no_materialization'],
 
2831
                  'default': "''",
 
2832
                  'inversion': (5, 2, 4),
 
2833
                  'type': 'set'},
 
2834
                { 'choice': [ 'index_merge={on|off}',
 
2835
                              'index_merge_intersection={on|off}',
 
2836
                              'index_merge_sort_union={on|off}',
 
2837
                              'index_merge_union={on|off}'],
 
2838
                  'inversion': (5, 4, 2),
 
2839
                  'outversion': (5, 5, 2),
 
2840
                  'type': 'set'},
 
2841
                { 'choice': [ 'engine_condition_pushdown={on|off}',
 
2842
                              'index_merge={on|off}',
 
2843
                              'index_merge_intersection={on|off}',
 
2844
                              'index_merge_sort_union={on|off}',
 
2845
                              'index_merge_union={on|off}'],
 
2846
                  'inversion': (5, 5, 3),
 
2847
                  'type': 'set'},
 
2848
                { 'choice': [ 'no_firstmatch',
 
2849
                              'no_loosescan',
 
2850
                              'no_materialization',
 
2851
                              'no_semijoin'],
 
2852
                  'default': "''",
 
2853
                  'inversion': (6, 0, 0),
 
2854
                  'outversion': (6, 0, 10),
 
2855
                  'type': 'set'},
 
2856
                { 'choice': [ 'index_merge={on|off}',
 
2857
                              'index_merge_intersection={on|off}',
 
2858
                              'index_merge_sort_union={on|off}',
 
2859
                              'index_merge_union={on|off}',
 
2860
                              'semijoin={on|off}',
 
2861
                              'firstmatch={on|off}',
 
2862
                              'loosescan={on|off}',
 
2863
                              'materialization={on|off}'],
 
2864
                  'inversion': (6, 0, 11),
 
2865
                  'outversion': (6, 0, 13),
 
2866
                  'type': 'set'},
 
2867
                { 'choice': [ 'index_merge={on|off}',
 
2868
                              'index_merge_intersection={on|off}',
 
2869
                              'index_merge_sort_union={on|off}',
 
2870
                              'index_merge_union={on|off}',
 
2871
                              'semijoin={on|off}',
 
2872
                              'firstmatch={on|off}',
 
2873
                              'loosescan={on|off}',
 
2874
                              'materialization={on|off}',
 
2875
                              'engine_condition_pushdown={on|off}',
 
2876
                              'index_condition_pushdown={on|off}',
 
2877
                              'mrr={on|off}',
 
2878
                              'mrr_cost_based={on|off}'],
 
2879
                  'inversion': (6, 0, 14),
 
2880
                  'type': 'set'}],
 
2881
    'versions': [ ((5, 1, 34), (5, 2, 4), (5, 4, 2)),
 
2882
                  ((5, 1), (5, 2), (5, 4), (5, 5), (5, 6), (6, 0)),
 
2883
                  ()]},
 
2884
  { 'caption': 'partition',
 
2885
    'description': 'Enable (or disable) partitioning support',
 
2886
    'disabledby': 'skip-partition',
 
2887
    'name': 'partition',
 
2888
    'values': [ { 'default': 'on',
 
2889
                  'off': 'disabledby',
 
2890
                  'on': 'on',
 
2891
                  'type': 'boolean'}],
 
2892
    'versions': [(), ((5, 1), (5, 4), (5, 5), (5, 6), (6, 0)), ()]},
 
2893
  { 'caption': 'performance_schema',
 
2894
    'description': 'Whether Performance Schema is enabled',
 
2895
    'name': 'performance_schema',
 
2896
    'optype': { 'format': 'performance_schema=#'},
 
2897
    'values': [ { 'default': 'on',
 
2898
                  'off': 'off',
 
2899
                  'on': 'on',
 
2900
                  'type': 'boolean'}],
 
2901
    'versions': [((5, 5, 3), (6, 0, 14)), ((5, 5), (5, 6), (6, 0)), ()]},
 
2902
  { 'caption': 'performance_schema_events_waits_history_long_size',
 
2903
    'description': 'The number of rows in events_waits_history_long',
 
2904
    'name': 'performance_schema_events_waits_history_long_size',
 
2905
    'optype': { 'format': 'performance_schema_events_waits_history_long_size=#'},
 
2906
    'values': [{ 'default': '10000', 'type': 'numeric'}],
 
2907
    'versions': [((5, 5, 3), (6, 0, 14)), ((5, 5), (5, 6), (6, 0)), ()]},
 
2908
  { 'caption': 'performance_schema_events_waits_history_size',
 
2909
    'description': 'The number of rows in events_waits_history',
 
2910
    'name': 'performance_schema_events_waits_history_size',
 
2911
    'optype': { 'format': 'performance_schema_events_waits_history_size=#'},
 
2912
    'values': [{ 'default': '10', 'type': 'numeric'}],
 
2913
    'versions': [((5, 5, 3), (6, 0, 14)), ((5, 5), (5, 6), (6, 0)), ()]},
 
2914
  { 'caption': 'performance_schema_max_cond_classes',
 
2915
    'description': 'The maximum number of condition instruments',
 
2916
    'name': 'performance_schema_max_cond_classes',
 
2917
    'optype': { 'format': 'performance_schema_max_cond_classes=#'},
 
2918
    'values': [{ 'default': '80', 'type': 'numeric'}],
 
2919
    'versions': [((5, 5, 3), (6, 0, 14)), ((5, 5), (5, 6), (6, 0)), ()]},
 
2920
  { 'caption': 'performance_schema_max_cond_instances',
 
2921
    'description': 'The maximum number of instrumented condition objects',
 
2922
    'name': 'performance_schema_max_cond_instances',
 
2923
    'optype': { 'format': 'performance_schema_max_cond_instances=#'},
 
2924
    'values': [{ 'default': '1000', 'type': 'numeric'}],
 
2925
    'versions': [((5, 5, 3), (6, 0, 14)), ((5, 5), (5, 6), (6, 0)), ()]},
 
2926
  { 'caption': 'performance_schema_max_file_classes',
 
2927
    'description': 'The maximum number of file instruments',
 
2928
    'name': 'performance_schema_max_file_classes',
 
2929
    'optype': { 'format': 'performance_schema_max_file_classes=#'},
 
2930
    'values': [{ 'default': '50', 'type': 'numeric'}],
 
2931
    'versions': [((5, 5, 3), (6, 0, 14)), ((5, 5), (5, 6), (6, 0)), ()]},
 
2932
  { 'caption': 'performance_schema_max_file_handles',
 
2933
    'description': 'The maximum number of opened file objects',
 
2934
    'name': 'performance_schema_max_file_handles',
 
2935
    'optype': { 'format': 'performance_schema_max_file_handles=#'},
 
2936
    'values': [{ 'default': '32768', 'type': 'numeric'}],
 
2937
    'versions': [((5, 5, 3), (6, 0, 14)), ((5, 5), (5, 6), (6, 0)), ()]},
 
2938
  { 'caption': 'performance_schema_max_file_instances',
 
2939
    'description': 'The maximum number of instrumented file objects',
 
2940
    'name': 'performance_schema_max_file_instances',
 
2941
    'optype': { 'format': 'performance_schema_max_file_instances=#'},
 
2942
    'values': [{ 'default': '10000', 'type': 'numeric'}],
 
2943
    'versions': [((5, 5, 3), (6, 0, 14)), ((5, 5), (5, 6), (6, 0)), ()]},
 
2944
  { 'caption': 'performance_schema_max_mutex_classes',
 
2945
    'description': 'The maximum number of mutex instruments',
 
2946
    'name': 'performance_schema_max_mutex_classes',
 
2947
    'optype': { 'format': 'performance_schema_max_mutex_classes=#'},
 
2948
    'values': [{ 'default': '200', 'type': 'numeric'}],
 
2949
    'versions': [((5, 5, 3), (6, 0, 14)), ((5, 5), (5, 6), (6, 0)), ()]},
 
2950
  { 'caption': 'performance_schema_max_mutex_instances',
 
2951
    'description': 'The maximum number of instrumented mutex objects',
 
2952
    'name': 'performance_schema_max_mutex_instances',
 
2953
    'optype': { 'format': 'performance_schema_max_mutex_instances=#'},
 
2954
    'values': [{ 'default': '1000', 'type': 'numeric'}],
 
2955
    'versions': [((5, 5, 3), (6, 0, 14)), ((5, 5), (5, 6), (6, 0)), ()]},
 
2956
  { 'caption': 'performance_schema_max_rwlock_classes',
 
2957
    'description': 'The maximum number of rwlock instruments',
 
2958
    'name': 'performance_schema_max_rwlock_classes',
 
2959
    'optype': { 'format': 'performance_schema_max_rwlock_classes=#'},
 
2960
    'values': [{ 'default': '20', 'type': 'numeric'}],
 
2961
    'versions': [((5, 5, 3), (6, 0, 14)), ((5, 5), (5, 6), (6, 0)), ()]},
 
2962
  { 'caption': 'performance_schema_max_rwlock_instances',
 
2963
    'description': 'The maximum number of instrumented rwlock objects',
 
2964
    'name': 'performance_schema_max_rwlock_instances',
 
2965
    'optype': { 'format': 'performance_schema_max_rwlock_instances=#'},
 
2966
    'values': [{ 'default': '1000', 'type': 'numeric'}],
 
2967
    'versions': [((5, 5, 3), (6, 0, 14)), ((5, 5), (5, 6), (6, 0)), ()]},
 
2968
  { 'caption': 'performance_schema_max_table_handles',
 
2969
    'description': 'The maximum number of opened table objects',
 
2970
    'name': 'performance_schema_max_table_handles',
 
2971
    'optype': { 'format': 'performance_schema_max_table_handles=#'},
 
2972
    'values': [{ 'default': '100000', 'type': 'numeric'}],
 
2973
    'versions': [((5, 5, 3), (6, 0, 14)), ((5, 5), (5, 6), (6, 0)), ()]},
 
2974
  { 'caption': 'performance_schema_max_table_instances',
 
2975
    'description': 'The maximum number of instrumented table objects',
 
2976
    'name': 'performance_schema_max_table_instances',
 
2977
    'optype': { 'format': 'performance_schema_max_table_instances=#'},
 
2978
    'values': [{ 'default': '50000', 'type': 'numeric'}],
 
2979
    'versions': [((5, 5, 3), (6, 0, 14)), ((5, 5), (5, 6), (6, 0)), ()]},
 
2980
  { 'caption': 'performance_schema_max_thread_classes',
 
2981
    'description': 'The maximum number of thread instruments',
 
2982
    'name': 'performance_schema_max_thread_classes',
 
2983
    'optype': { 'format': 'performance_schema_max_thread_classes=#'},
 
2984
    'values': [{ 'default': '50', 'type': 'numeric'}],
 
2985
    'versions': [((5, 5, 3), (6, 0, 14)), ((5, 5), (5, 6), (6, 0)), ()]},
 
2986
  { 'caption': 'performance_schema_max_thread_instances',
 
2987
    'description': 'The maximum number of instrumented thread objects',
 
2988
    'name': 'performance_schema_max_thread_instances',
 
2989
    'optype': { 'format': 'performance_schema_max_thread_instances=#'},
 
2990
    'values': [{ 'default': '1000', 'type': 'numeric'}],
 
2991
    'versions': [((5, 5, 3), (6, 0, 14)), ((5, 5), (5, 6), (6, 0)), ()]},
 
2992
  { 'caption': 'performance_schema_setup_actors_size',
 
2993
    'description': 'The number of rows in setup_actors',
 
2994
    'name': 'performance_schema_setup_actors_size',
 
2995
    'optype': { 'format': 'performance_schema_setup_actors_size=#'},
 
2996
    'values': [{ 'default': '100', 'type': 'numeric'}],
 
2997
    'versions': [((5, 6, 1),), ((5, 6),), ()]},
 
2998
  { 'caption': 'performance_schema_setup_objects_size',
 
2999
    'description': 'The number of rows in setup_objects',
 
3000
    'name': 'performance_schema_setup_objects_size',
 
3001
    'optype': { 'format': 'performance_schema_setup_objects_size=#'},
 
3002
    'values': [{ 'default': '100', 'type': 'numeric'}],
 
3003
    'versions': [((5, 6, 1),), ((5, 6),), ()]},
 
3004
  { 'caption': 'pid-file',
 
3005
    'description': 'Process ID file used by mysqld_safe',
 
3006
    'name': 'pid-file',
 
3007
    'optype': { 'format': 'pid-file=file_name'},
 
3008
    'values': [{ 'type': 'filename'}],
 
3009
    'versions': [ (),
 
3010
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
3011
                  ()]},
 
3012
  { 'caption': 'plugin',
 
3013
    'description': 'Prefix for specifying plugin-specific options.',
 
3014
    'name': 'plugin',
 
3015
    'values': [{ 'type': 'string'}],
 
3016
    'versions': [(), ((5, 1), (5, 4), (5, 5), (5, 6), (6, 0)), ()]},
 
3017
  { 'caption': 'plugin_dir',
 
3018
    'description': 'Directory for plugins',
 
3019
    'name': 'plugin_dir',
 
3020
    'values': [ { 'default': 'BASEDIR/lib/plugin',
 
3021
                  'inversion': (5, 1, 2),
 
3022
                  'platform': 'windows',
 
3023
                  'type': 'dirname'},
 
3024
                { 'default': 'BASEDIR/lib/mysql/plugin',
 
3025
                  'inversion': (5, 1, 2),
 
3026
                  'platform': 'other',
 
3027
                  'type': 'dirname'},
 
3028
                { 'default': 'BASEDIR/lib/plugin',
 
3029
                  'inversion': (5, 5, 0),
 
3030
                  'outversion': (5, 5, 4),
 
3031
                  'platform': 'windows',
 
3032
                  'type': 'dirname'},
 
3033
                { 'default': 'BASEDIR/lib/mysql/plugin',
 
3034
                  'inversion': (5, 5, 0),
 
3035
                  'outversion': (5, 5, 4),
 
3036
                  'platform': 'other',
 
3037
                  'type': 'dirname'},
 
3038
                { 'default': 'BASEDIR/lib/plugin',
 
3039
                  'inversion': (5, 5, 5),
 
3040
                  'type': 'dirname'}],
 
3041
    'versions': [ ((4, 1, 25), (5, 0, 67), (5, 1, 2)),
 
3042
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
3043
                  ()]},
 
3044
  { 'caption': 'plugin-load',
 
3045
    'description': 'List of plugins to load at startup',
 
3046
    'name': 'plugin-load',
 
3047
    'values': [{ 'type': 'string'}],
 
3048
    'versions': [((5, 1, 18),), ((5, 1), (5, 4), (5, 5), (5, 6), (6, 0)), ()]},
 
3049
  { 'caption': 'port',
 
3050
    'description': 'Port number to use for connection',
 
3051
    'name': 'port',
 
3052
    'values': [{ 'default': '3306', 'type': 'numeric'}],
 
3053
    'versions': [ (),
 
3054
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
3055
                  ()]},
 
3056
  { 'caption': 'port-open-timeout',
 
3057
    'description': 'Maximum time in seconds to wait for the port to become free (Default: no wait)',
 
3058
    'name': 'port-open-timeout',
 
3059
    'values': [{ 'default': '0', 'type': 'numeric'}],
 
3060
    'versions': [ ((5, 0, 19), (5, 1, 5)),
 
3061
                  ((5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
3062
                  ()]},
 
3063
  { 'caption': 'preload_buffer_size',
 
3064
    'description': 'The size of the buffer that is allocated when preloading indexes',
 
3065
    'name': 'preload_buffer_size',
 
3066
    'values': [ { 'default': '32768',
 
3067
                  'maximum': '1073741824',
 
3068
                  'minimum': '1024',
 
3069
                  'type': 'numeric'}],
 
3070
    'versions': [ ((4, 1, 1),),
 
3071
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
3072
                  ()]},
 
3073
  { 'caption': 'query_alloc_block_size',
 
3074
    'description': 'Allocation block size for query parsing and execution',
 
3075
    'name': 'query_alloc_block_size',
 
3076
    'values': [ { 'bitsize': '32',
 
3077
                  'blocksize': '1024',
 
3078
                  'default': '8192',
 
3079
                  'maximum': '4294967295',
 
3080
                  'minimum': '1024',
 
3081
                  'type': 'numeric'},
 
3082
                { 'bitsize': '64',
 
3083
                  'blocksize': '1024',
 
3084
                  'default': '8192',
 
3085
                  'maximum': '18446744073709547520',
 
3086
                  'minimum': '1024',
 
3087
                  'type': 'numeric'}],
 
3088
    'versions': [ (),
 
3089
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
3090
                  ()]},
 
3091
  { 'caption': 'query_cache_limit',
 
3092
    'description': "Don't cache results that are bigger than this",
 
3093
    'name': 'query_cache_limit',
 
3094
    'values': [ { 'bitsize': '32',
 
3095
                  'default': '1048576',
 
3096
                  'maximum': '4294967295',
 
3097
                  'minimum': '0',
 
3098
                  'type': 'numeric'},
 
3099
                { 'bitsize': '64',
 
3100
                  'default': '1048576',
 
3101
                  'maximum': '18446744073709547520',
 
3102
                  'minimum': '0',
 
3103
                  'type': 'numeric'}],
 
3104
    'versions': [ (),
 
3105
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
3106
                  ()]},
 
3107
  { 'caption': 'query_cache_min_res_unit',
 
3108
    'description': 'Minimal size of unit in which space for results is allocated (last unit will be trimmed after writing all result data)',
 
3109
    'name': 'query_cache_min_res_unit',
 
3110
    'values': [ { 'bitsize': '32',
 
3111
                  'default': '4096',
 
3112
                  'maximum': '4294967295',
 
3113
                  'minimum': '512',
 
3114
                  'type': 'numeric'},
 
3115
                { 'bitsize': '64',
 
3116
                  'default': '4096',
 
3117
                  'maximum': '18446744073709547520',
 
3118
                  'minimum': '512',
 
3119
                  'type': 'numeric'}],
 
3120
    'versions': [ (),
 
3121
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
3122
                  ()]},
 
3123
  { 'caption': 'query_cache_size',
 
3124
    'description': 'The memory allocated to store results from old queries',
 
3125
    'name': 'query_cache_size',
 
3126
    'values': [ { 'bitsize': '32',
 
3127
                  'default': '0',
 
3128
                  'maximum': '4294967295',
 
3129
                  'minimum': '0',
 
3130
                  'type': 'numeric'},
 
3131
                { 'bitsize': '64',
 
3132
                  'default': '0',
 
3133
                  'maximum': '18446744073709547520',
 
3134
                  'minimum': '0',
 
3135
                  'type': 'numeric'}],
 
3136
    'versions': [ (),
 
3137
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
3138
                  ()]},
 
3139
  { 'caption': 'query_cache_type',
 
3140
    'description': 'Query cache type',
 
3141
    'name': 'query_cache_type',
 
3142
    'values': [{ 'choice': ['0', '1', '2'], 'default': '1', 'type': 'enum'}],
 
3143
    'versions': [ (),
 
3144
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
3145
                  ()]},
 
3146
  { 'caption': 'query_cache_wlock_invalidate',
 
3147
    'description': 'Invalidate queries in query cache on LOCK for write',
 
3148
    'name': 'query_cache_wlock_invalidate',
 
3149
    'values': [ { 'default': 'false',
 
3150
                  'off': 'false',
 
3151
                  'on': 'true',
 
3152
                  'type': 'boolean'}],
 
3153
    'versions': [ (),
 
3154
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
3155
                  ()]},
 
3156
  { 'caption': 'query_prealloc_size',
 
3157
    'description': 'Persistent buffer for query parsing and execution',
 
3158
    'name': 'query_prealloc_size',
 
3159
    'values': [ { 'bitsize': '32',
 
3160
                  'blocksize': '1024',
 
3161
                  'default': '8192',
 
3162
                  'maximum': '4294967295',
 
3163
                  'minimum': '8192',
 
3164
                  'type': 'numeric'},
 
3165
                { 'bitsize': '64',
 
3166
                  'blocksize': '1024',
 
3167
                  'default': '8192',
 
3168
                  'maximum': '18446744073709547520',
 
3169
                  'minimum': '8192',
 
3170
                  'type': 'numeric'}],
 
3171
    'versions': [ (),
 
3172
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
3173
                  ()]},
 
3174
  { 'caption': 'range_alloc_block_size',
 
3175
    'description': 'Allocation block size for storing ranges during optimization',
 
3176
    'name': 'range_alloc_block_size',
 
3177
    'values': [ { 'bitsize': '32',
 
3178
                  'blocksize': '1024',
 
3179
                  'default': '2048',
 
3180
                  'maximum': '4294967295',
 
3181
                  'minimum': '2048',
 
3182
                  'type': 'numeric'},
 
3183
                { 'bitsize': '32',
 
3184
                  'blocksize': '1024',
 
3185
                  'default': '4096',
 
3186
                  'inversion': (5, 0, 54),
 
3187
                  'maximum': '4294967295',
 
3188
                  'minimum': '4096',
 
3189
                  'type': 'numeric'},
 
3190
                { 'bitsize': '64',
 
3191
                  'blocksize': '1024',
 
3192
                  'default': '2048',
 
3193
                  'maximum': '18446744073709547520',
 
3194
                  'minimum': '2048',
 
3195
                  'type': 'numeric'},
 
3196
                { 'bitsize': '64',
 
3197
                  'blocksize': '1024',
 
3198
                  'default': '4096',
 
3199
                  'inversion': (5, 0, 54),
 
3200
                  'maximum': '18446744073709547520',
 
3201
                  'minimum': '4096',
 
3202
                  'type': 'numeric'}],
 
3203
    'versions': [ (),
 
3204
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
3205
                  ()]},
 
3206
  { 'caption': 'read_buffer_size',
 
3207
    'description': 'Each thread that does a sequential scan allocates a buffer of this size for each table it scans',
 
3208
    'name': 'read_buffer_size',
 
3209
    'values': [ { 'default': '131072',
 
3210
                  'maximum': '2147479552',
 
3211
                  'minimum': '8200',
 
3212
                  'type': 'numeric'}],
 
3213
    'versions': [ (),
 
3214
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
3215
                  ()]},
 
3216
  { 'caption': 'read_only',
 
3217
    'description': 'Make all nontemporary tables read only',
 
3218
    'name': 'read_only',
 
3219
    'values': [{ 'default': '0', 'type': 'numeric'}],
 
3220
    'versions': [ (),
 
3221
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
3222
                  ()]},
 
3223
  { 'caption': 'read_rnd_buffer_size',
 
3224
    'description': 'When reading rows in sorted order after a sort, the rows are read through this buffer to avoid a disk seeks. If not set, then it is set to the value of record_buffer.',
 
3225
    'name': 'read_rnd_buffer_size',
 
3226
    'values': [ { 'default': '262144',
 
3227
                  'maximum': '4294967295',
 
3228
                  'minimum': '8200',
 
3229
                  'type': 'numeric'}],
 
3230
    'versions': [ (),
 
3231
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
3232
                  ()]},
 
3233
  { 'caption': 'record_buffer',
 
3234
    'deprecated': (4, 0, 3),
 
3235
    'description': 'Alias for read_buffer_size',
 
3236
    'name': 'record_buffer',
 
3237
    'optype': { 'outversion': '4.0.3'},
 
3238
    'values': [ { 'default': '131072',
 
3239
                  'maximum': '4294967295',
 
3240
                  'minimum': '8200',
 
3241
                  'type': 'numeric'}],
 
3242
    'versions': [(), (), ()]},
 
3243
  { 'caption': 'relay-log',
 
3244
    'description': 'The location and base name to use for relay logs',
 
3245
    'name': 'relay-log',
 
3246
    'values': [{ 'type': 'filename'}],
 
3247
    'versions': [ (),
 
3248
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
3249
                  ()]},
 
3250
  { 'caption': 'relay-log-index',
 
3251
    'description': 'The location and name to use for the file that keeps a list of the last relay logs',
 
3252
    'name': 'relay-log-index',
 
3253
    'values': [{ 'type': 'filename'}],
 
3254
    'versions': [ (),
 
3255
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
3256
                  ()]},
 
3257
  { 'caption': 'relay-log-info-file',
 
3258
    'description': 'The location and name of the file that remembers where the SQL replication thread is in the relay logs',
 
3259
    'name': 'relay-log-info-file',
 
3260
    'optype': { 'format': 'relay-log-info-file=file_name'},
 
3261
    'values': [{ 'default': 'relay-log.info', 'type': 'filename'}],
 
3262
    'versions': [ (),
 
3263
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
3264
                  ()]},
 
3265
  { 'caption': 'relay_log_purge',
 
3266
    'description': 'Determines whether relay logs are purged',
 
3267
    'name': 'relay_log_purge',
 
3268
    'values': [ { 'default': 'true',
 
3269
                  'off': 'false',
 
3270
                  'on': 'true',
 
3271
                  'type': 'boolean'}],
 
3272
    'versions': [ ((4, 1, 1),),
 
3273
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
3274
                  ()]},
 
3275
  { 'caption': 'relay_log_info_file',
 
3276
    'description': 'The name of the file in which the slave records information about the relay logs.',
 
3277
    'name': 'relay_log_info_file',
 
3278
    'values': [{ 'default': 'relay-log.info', 'type': 'string'}],
 
3279
    'versions': [ ((4, 1, 1),),
 
3280
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
3281
                  ()]},
 
3282
  { 'caption': 'relay_log_index',
 
3283
    'description': 'The name of the relay log index file.',
 
3284
    'name': 'relay_log_index',
 
3285
    'values': [{ 'default': '*host_name*-relay-bin.index', 'type': 'string'}],
 
3286
    'versions': [ ((4, 1, 1),),
 
3287
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
3288
                  ()]},
 
3289
  { 'caption': 'relay_log_recovery',
 
3290
    'description': 'Enables automatic recovery of relay log files from master at startup',
 
3291
    'name': 'relay_log_recovery',
 
3292
    'values': [ { 'default': 'false',
 
3293
                  'off': 'false',
 
3294
                  'on': 'true',
 
3295
                  'type': 'boolean'}],
 
3296
    'versions': [((6, 0, 11),), ((5, 5), (5, 6), (6, 0)), ()]},
 
3297
  { 'caption': 'relay_log_space_limit',
 
3298
    'description': 'Maximum space to use for all relay logs',
 
3299
    'name': 'relay_log_space_limit',
 
3300
    'values': [ { 'bitsize': '32',
 
3301
                  'default': '0',
 
3302
                  'maximum': '4294967295',
 
3303
                  'minimum': '0',
 
3304
                  'type': 'numeric'},
 
3305
                { 'bitsize': '64',
 
3306
                  'default': '0',
 
3307
                  'maximum': '18446744073709547520',
 
3308
                  'minimum': '0',
 
3309
                  'type': 'numeric'}],
 
3310
    'versions': [ (),
 
3311
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
3312
                  ()]},
 
3313
  { 'caption': 'replicate-do-db',
 
3314
    'description': 'Tells the slave SQL thread to restrict replication to the specified database',
 
3315
    'name': 'replicate-do-db',
 
3316
    'values': [{ 'type': 'string'}],
 
3317
    'versions': [ (),
 
3318
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
3319
                  ()]},
 
3320
  { 'caption': 'replicate-do-table',
 
3321
    'description': 'Tells the slave SQL thread to restrict replication to the specified table',
 
3322
    'name': 'replicate-do-table',
 
3323
    'values': [{ 'type': 'string'}],
 
3324
    'versions': [ (),
 
3325
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
3326
                  ()]},
 
3327
  { 'caption': 'replicate-ignore-db',
 
3328
    'description': 'Tells the slave SQL thread not to replicate to the specified database',
 
3329
    'name': 'replicate-ignore-db',
 
3330
    'values': [{ 'type': 'string'}],
 
3331
    'versions': [ (),
 
3332
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
3333
                  ()]},
 
3334
  { 'caption': 'replicate-ignore-table',
 
3335
    'description': 'Tells the slave SQL thread not to replicate to the specified table',
 
3336
    'name': 'replicate-ignore-table',
 
3337
    'values': [{ 'type': 'string'}],
 
3338
    'versions': [ (),
 
3339
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
3340
                  ()]},
 
3341
  { 'caption': 'replicate-rewrite-db',
 
3342
    'description': 'Updates to a database with a different name than the original',
 
3343
    'name': 'replicate-rewrite-db',
 
3344
    'values': [{ 'type': 'string'}],
 
3345
    'versions': [ (),
 
3346
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
3347
                  ()]},
 
3348
  { 'caption': 'replicate-same-server-id',
 
3349
    'description': 'In replication, if set to 1, do not skip events having our server id',
 
3350
    'name': 'replicate-same-server-id',
 
3351
    'values': [ { 'default': 'false',
 
3352
                  'off': 'false',
 
3353
                  'on': 'true',
 
3354
                  'type': 'boolean'}],
 
3355
    'versions': [ ((5, 0, 1),),
 
3356
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
3357
                  ()]},
 
3358
  { 'caption': 'replicate-wild-do-table',
 
3359
    'description': 'Tells the slave thread to restrict replication to the tables that match the specified wildcard pattern',
 
3360
    'name': 'replicate-wild-do-table',
 
3361
    'values': [{ 'type': 'string'}],
 
3362
    'versions': [ (),
 
3363
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
3364
                  ()]},
 
3365
  { 'caption': 'replicate-wild-ignore-table',
 
3366
    'description': 'Tells the slave thread not to replicate to the tables that match the given wildcard pattern',
 
3367
    'name': 'replicate-wild-ignore-table',
 
3368
    'values': [{ 'type': 'string'}],
 
3369
    'versions': [ (),
 
3370
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
3371
                  ()]},
 
3372
  { 'caption': 'report-host',
 
3373
    'description': 'Host name or IP of the slave to be reported to the master during slave registration',
 
3374
    'name': 'report-host',
 
3375
    'values': [{ 'type': 'string'}],
 
3376
    'versions': [ (),
 
3377
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
3378
                  ()]},
 
3379
  { 'caption': 'report-password',
 
3380
    'description': 'The account password that a slave server should report to the master server',
 
3381
    'name': 'report-password',
 
3382
    'values': [{ 'type': 'string'}],
 
3383
    'versions': [ (),
 
3384
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
3385
                  ()]},
 
3386
  { 'caption': 'report-port',
 
3387
    'description': 'Port for connecting to slave reported to the master during slave registration',
 
3388
    'name': 'report-port',
 
3389
    'values': [{ 'default': '3306', 'type': 'numeric'}],
 
3390
    'versions': [ (),
 
3391
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
3392
                  ()]},
 
3393
  { 'caption': 'report-user',
 
3394
    'description': 'The account name that a slave server should report to the master server',
 
3395
    'name': 'report-user',
 
3396
    'values': [{ 'type': 'string'}],
 
3397
    'versions': [ (),
 
3398
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
3399
                  ()]},
 
3400
  { 'caption': 'restore_disables_events',
 
3401
    'description': 'Whether RESTORE disables restored events',
 
3402
    'name': 'restore_disables_events',
 
3403
    'values': [ { 'default': 'on',
 
3404
                  'off': 'off',
 
3405
                  'on': 'on',
 
3406
                  'type': 'boolean'}],
 
3407
    'versions': [((6, 0, 14),), ((5, 6), (6, 0)), ()]},
 
3408
  { 'caption': 'restore_elevation',
 
3409
    'description': 'Enable or disable RESTORE privilege elevation',
 
3410
    'name': 'restore_elevation',
 
3411
    'values': [ { 'default': 'on',
 
3412
                  'off': 'off',
 
3413
                  'on': 'on',
 
3414
                  'type': 'boolean'}],
 
3415
    'versions': [((6, 0, 14),), ((5, 6), (6, 0)), ()]},
 
3416
  { 'caption': 'restore_precheck',
 
3417
    'description': 'Whether RESTORE performs privilege checking before restoring',
 
3418
    'name': 'restore_precheck',
 
3419
    'values': [ { 'default': 'on',
 
3420
                  'off': 'off',
 
3421
                  'on': 'on',
 
3422
                  'type': 'boolean'}],
 
3423
    'versions': [((6, 0, 14),), ((5, 6), (6, 0)), ()]},
 
3424
  { 'caption': 'safe-mode',
 
3425
    'deprecated': (5, 0),
 
3426
    'description': 'Skip some optimization stages (for testing)',
 
3427
    'name': 'safe-mode',
 
3428
    'values': [{ 'off': '0', 'on': '1', 'type': 'boolean'}],
 
3429
    'versions': [ (),
 
3430
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
3431
                  ()]},
 
3432
  { 'caption': 'safe-show-database',
 
3433
    'deprecated': (4, 0, 2),
 
3434
    'description': 'Deprecated option; use GRANT SHOW DATABASES instead',
 
3435
    'name': 'safe-show-database',
 
3436
    'values': [{ 'off': '0', 'on': '1', 'type': 'boolean'}],
 
3437
    'versions': [ (),
 
3438
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
3439
                  ()]},
 
3440
  { 'caption': 'safe-user-create',
 
3441
    'description': "Don't allow new user creation by the user who has no write privileges to the mysql.user table",
 
3442
    'name': 'safe-user-create',
 
3443
    'values': [ { 'default': 'false',
 
3444
                  'off': 'false',
 
3445
                  'on': 'true',
 
3446
                  'type': 'boolean'}],
 
3447
    'versions': [ (),
 
3448
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
3449
                  ()]},
 
3450
  { 'caption': 'safemalloc-mem-limit',
 
3451
    'description': 'Simulate memory shortage',
 
3452
    'name': 'safemalloc-mem-limit',
 
3453
    'values': [{ 'type': 'numeric'}],
 
3454
    'versions': [ (),
 
3455
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (6, 0)),
 
3456
                  ((5, 5, 6),)]},
 
3457
  { 'caption': 'secure-auth',
 
3458
    'description': 'Disallow authentication for accounts that have old (pre-4.1) passwords',
 
3459
    'name': 'secure-auth',
 
3460
    'values': [ { 'default': 'false',
 
3461
                  'off': 'false',
 
3462
                  'on': 'true',
 
3463
                  'type': 'boolean'}],
 
3464
    'versions': [ ((4, 1, 1),),
 
3465
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
3466
                  ()]},
 
3467
  { 'caption': 'secure-backup-file-priv',
 
3468
    'description': 'Limit BACKUP DATABASE and RESTORE to files in a single directory',
 
3469
    'name': 'secure-backup-file-priv',
 
3470
    'values': [{ 'type': 'string'}],
 
3471
    'versions': [((6, 1, 11),), ((5, 6), (6, 0)), ()]},
 
3472
  { 'caption': 'secure-file-priv',
 
3473
    'description': 'Limit LOAD_FILE(), LOAD DATA, and SELECT ... INTO OUTFILE to files in specified directory',
 
3474
    'name': 'secure-file-priv',
 
3475
    'optype': { 'format': 'secure-file-priv=path'},
 
3476
    'values': [{ 'type': 'string'}],
 
3477
    'versions': [ ((5, 0, 38), (5, 1, 17)),
 
3478
                  ((5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
3479
                  ()]},
 
3480
  { 'caption': 'server-id',
 
3481
    'description': 'Uniquely identifies the server instance in the community of replication partners. Must be set to a value greater than 0 to enable replication.',
 
3482
    'name': 'server-id',
 
3483
    'values': [ { 'default': '0',
 
3484
                  'maximum': '4294967295',
 
3485
                  'minimum': '0',
 
3486
                  'type': 'numeric'}],
 
3487
    'versions': [ (),
 
3488
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
3489
                  ()]},
 
3490
  { 'caption': 'server-id-bits',
 
3491
    'description': 'Sets the number of least significant bits in the server_id actually used for identifying the server, permitting NDB API applications to store application data in the most significant bits. server_id must be less than 2 to the power of this value.',
 
3492
    'name': 'server-id-bits',
 
3493
    'values': [ { 'default': '32',
 
3494
                  'maximum': '32',
 
3495
                  'minimum': '7',
 
3496
                  'type': 'numeric'}],
 
3497
    'versions': [((5, 1, 47),), ((5, 1),), ()]},
 
3498
  { 'caption': 'set-variable',
 
3499
    'deprecated': (5, 0),
 
3500
    'description': 'Change the value of a variable; please note that this option is deprecated',
 
3501
    'name': 'set-variable',
 
3502
    'values': [{ 'type': 'string'}],
 
3503
    'versions': [(), ((4, 1), (5, 0)), ()]},
 
3504
  { 'caption': 'show-slave-auth-info',
 
3505
    'description': 'Show user name and password in SHOW SLAVE HOSTS on this master',
 
3506
    'name': 'show-slave-auth-info',
 
3507
    'values': [ { 'default': 'false',
 
3508
                  'off': 'false',
 
3509
                  'on': 'true',
 
3510
                  'type': 'boolean'}],
 
3511
    'versions': [ (),
 
3512
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
3513
                  ()]},
 
3514
  { 'caption': 'skip-bdb',
 
3515
    'description': 'Disable Berkeley DB (if this version of MySQL supports it)',
 
3516
    'name': 'skip-bdb',
 
3517
    'values': [ { 'default': 'false',
 
3518
                  'off': 'false',
 
3519
                  'on': 'true',
 
3520
                  'type': 'boolean'}],
 
3521
    'versions': [(), ((4, 1), (5, 0)), ()]},
 
3522
  { 'caption': 'skip-character-set-client-handshake',
 
3523
    'description': 'Ignore client side character set value sent during handshake',
 
3524
    'name': 'skip-character-set-client-handshake',
 
3525
    'values': [{ 'off': 'del', 'on': 'name', 'type': 'boolean'}],
 
3526
    'versions': [ ((4, 1, 15), (5, 0, 13)),
 
3527
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
3528
                  ()]},
 
3529
  { 'caption': 'skip-concurrent-insert',
 
3530
    'description': 'Turn off the ability to select and insert at the same time on MyISAM tables',
 
3531
    'name': 'skip-concurrent-insert',
 
3532
    'values': [{ 'off': 'del', 'on': 'name', 'type': 'boolean'}],
 
3533
    'versions': [ (),
 
3534
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
3535
                  ()]},
 
3536
  { 'caption': 'skip-event-scheduler',
 
3537
    'description': 'Sets the Event Scheduler to OFF.',
 
3538
    'name': 'skip-event-scheduler',
 
3539
    'values': [{ 'off': 'del', 'on': 'name', 'type': 'boolean'}],
 
3540
    'versions': [(), ((5, 1), (5, 4), (5, 5), (5, 6), (6, 0)), ()]},
 
3541
  { 'caption': 'skip-external-locking',
 
3542
    'description': 'Skip system (external) locking',
 
3543
    'name': 'skip-external-locking',
 
3544
    'values': [{ 'off': 'del', 'on': 'name', 'type': 'boolean'}],
 
3545
    'versions': [ (),
 
3546
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
3547
                  ()]},
 
3548
  { 'caption': 'skip-grant-tables',
 
3549
    'description': 'Start without grant tables. This gives all users FULL ACCESS to all tables',
 
3550
    'name': 'skip-grant-tables',
 
3551
    'values': [ { 'default': 'false',
 
3552
                  'off': 'false',
 
3553
                  'on': 'true',
 
3554
                  'type': 'boolean'}],
 
3555
    'versions': [ (),
 
3556
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
3557
                  ()]},
 
3558
  { 'caption': 'skip-host-cache',
 
3559
    'description': "Don't cache host names",
 
3560
    'name': 'skip-host-cache',
 
3561
    'values': [{ 'off': 'del', 'on': 'name', 'type': 'boolean'}],
 
3562
    'versions': [ (),
 
3563
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
3564
                  ()]},
 
3565
  { 'caption': 'skip-locking',
 
3566
    'deprecated': None,
 
3567
    'description': 'Deprecated option',
 
3568
    'name': 'skip-locking',
 
3569
    'values': [{ 'off': 'del', 'on': 'name', 'type': 'boolean'}],
 
3570
    'versions': [ (),
 
3571
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
3572
                  ()]},
 
3573
  { 'caption': 'skip-merge',
 
3574
    'description': 'Disable Merge storage engine',
 
3575
    'name': 'skip-merge',
 
3576
    'values': [{ 'off': 'del', 'on': 'name', 'type': 'boolean'}],
 
3577
    'versions': [((5, 0, 24), (5, 1, 12)), ((5, 0), (5, 1)), ((5, 1, 14),)]},
 
3578
  { 'caption': 'skip-name-resolve',
 
3579
    'description': "Don't resolve host names. All host names are IPs or 'localhost'",
 
3580
    'name': 'skip-name-resolve',
 
3581
    'values': [ { 'default': 'off',
 
3582
                  'off': 'off',
 
3583
                  'on': 'on',
 
3584
                  'type': 'boolean'}],
 
3585
    'versions': [ (),
 
3586
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
3587
                  ()]},
 
3588
  { 'caption': 'skip-networking',
 
3589
    'description': "Don't allow connection with TCP/IP",
 
3590
    'name': 'skip-networking',
 
3591
    'values': [{ 'off': 'del', 'on': 'name', 'type': 'boolean'}],
 
3592
    'versions': [ (),
 
3593
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
3594
                  ()]},
 
3595
  { 'caption': 'skip-new',
 
3596
    'description': "Don't use new, possibly wrong routines",
 
3597
    'name': 'skip-new',
 
3598
    'values': [{ 'off': 'del', 'on': 'name', 'type': 'boolean'}],
 
3599
    'versions': [ (),
 
3600
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
3601
                  ()]},
 
3602
  { 'caption': 'skip-partition',
 
3603
    'description': 'Do not enable user-defined partitioning',
 
3604
    'name': 'skip-partition',
 
3605
    'values': [{ 'off': 'del', 'on': 'name', 'type': 'boolean'}],
 
3606
    'versions': [(), ((5, 1), (5, 4), (5, 5), (5, 6), (6, 0)), ()]},
 
3607
  { 'caption': 'skip-show-database',
 
3608
    'description': 'Do not allow SHOW DATABASE statements',
 
3609
    'name': 'skip-show-database',
 
3610
    'values': [{ 'off': 'del', 'on': 'name', 'type': 'boolean'}],
 
3611
    'versions': [ (),
 
3612
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
3613
                  ()]},
 
3614
  { 'caption': 'skip-slave-start',
 
3615
    'description': 'If set, slave is not autostarted',
 
3616
    'name': 'skip-slave-start',
 
3617
    'values': [ { 'default': 'false',
 
3618
                  'off': 'false',
 
3619
                  'on': 'true',
 
3620
                  'type': 'boolean'}],
 
3621
    'versions': [ (),
 
3622
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
3623
                  ()]},
 
3624
  { 'caption': 'skip-stack-trace',
 
3625
    'description': "Don't print a stack trace on failure",
 
3626
    'name': 'skip-stack-trace',
 
3627
    'values': [{ 'off': 'del', 'on': 'name', 'type': 'boolean'}],
 
3628
    'versions': [ (),
 
3629
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
3630
                  ()]},
 
3631
  { 'caption': 'skip-symlink',
 
3632
    'description': "Don't allow symlinking of tables. Deprecated option. Use --skip-symbolic-links.",
 
3633
    'name': 'skip-symlink',
 
3634
    'values': [{ 'off': 'del', 'on': 'name', 'type': 'boolean'}],
 
3635
    'versions': [ (),
 
3636
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
3637
                  ()]},
 
3638
  { 'caption': 'skip-sync-bdb-logs',
 
3639
    'deprecated': None,
 
3640
    'description': 'Disables synchronous BDB log flushes',
 
3641
    'name': 'skip-sync-bdb-logs',
 
3642
    'values': [{ 'off': 'del', 'on': 'name', 'type': 'boolean'}],
 
3643
    'versions': [(), ((4, 1), (5, 0)), ()]},
 
3644
  { 'caption': 'skip-thread-priority',
 
3645
    'deprecated': (5, 1, 29),
 
3646
    'description': "Don't give threads different priorities",
 
3647
    'name': 'skip-thread-priority',
 
3648
    'values': [{ 'off': 'del', 'on': 'name', 'type': 'boolean'}],
 
3649
    'versions': [ (),
 
3650
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
3651
                  ()]},
 
3652
  { 'caption': 'slave_allow_batching',
 
3653
    'description': 'Turns update batching on and off for a replication slave',
 
3654
    'name': 'slave_allow_batching',
 
3655
    'values': [ { 'default': 'off',
 
3656
                  'off': 'off',
 
3657
                  'on': 'on',
 
3658
                  'type': 'boolean'}],
 
3659
    'versions': [((5, 1, 19),), ((5, 1),), ()]},
 
3660
  { 'caption': 'slave-load-tmpdir',
 
3661
    'description': 'The location where the slave should put its temporary files when replicating a LOAD DATA INFILE statement',
 
3662
    'name': 'slave-load-tmpdir',
 
3663
    'values': [{ 'default': '/tmp', 'type': 'filename'}],
 
3664
    'versions': [ (),
 
3665
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
3666
                  ()]},
 
3667
  { 'caption': 'slave-skip-errors',
 
3668
    'description': 'Tells the slave thread to continue replication when a query returns an error from the provided list',
 
3669
    'name': 'slave-skip-errors',
 
3670
    'values': [],
 
3671
    'versions': [ (),
 
3672
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
3673
                  ()]},
 
3674
  { 'caption': 'slave_compressed_protocol',
 
3675
    'description': 'Use compression on master/slave protocol',
 
3676
    'name': 'slave_compressed_protocol',
 
3677
    'values': [ { 'default': 'off',
 
3678
                  'off': 'off',
 
3679
                  'on': 'on',
 
3680
                  'type': 'boolean'}],
 
3681
    'versions': [ (),
 
3682
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
3683
                  ()]},
 
3684
  { 'caption': 'slave-net-timeout',
 
3685
    'description': 'Number of seconds to wait for more data from a master/slave connection before aborting the read',
 
3686
    'name': 'slave-net-timeout',
 
3687
    'values': [{ 'default': '3600', 'minimum': '1', 'type': 'numeric'}],
 
3688
    'versions': [ (),
 
3689
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
3690
                  ()]},
 
3691
  { 'caption': 'slave_transaction_retries',
 
3692
    'description': 'Number of times the slave SQL thread will retry a transaction in case it failed with a deadlock or elapsed lock wait timeout, before giving up and stopping',
 
3693
    'name': 'slave_transaction_retries',
 
3694
    'values': [ { 'bitsize': '32',
 
3695
                  'default': '10',
 
3696
                  'maximum': '4294967295',
 
3697
                  'minimum': '0',
 
3698
                  'type': 'numeric'},
 
3699
                { 'bitsize': '64',
 
3700
                  'default': '10',
 
3701
                  'maximum': '18446744073709547520',
 
3702
                  'minimum': '0',
 
3703
                  'type': 'numeric'}],
 
3704
    'versions': [ ((4, 1, 11), (5, 0, 3)),
 
3705
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
3706
                  ()]},
 
3707
  { 'caption': 'slave_type_conversions',
 
3708
    'description': 'Controls type conversion mode on replication slave. Value is a list of zero or more elements from the list: ALL_LOSSY, ALL_NON_LOSSY. Set to an empty string to disallow type conversions between master and slave.',
 
3709
    'name': 'slave_type_conversions',
 
3710
    'values': [ { 'choice': [ 'ALL_LOSSY',
 
3711
                              'ALL_NON_LOSSY',
 
3712
                              'ALL_LOSSY,ALL_NON_LOSSY'],
 
3713
                  'default': '',
 
3714
                  'type': 'set'}],
 
3715
    'versions': [ ((5, 1, 44), (5, 5, 3), (6, 0, 14)),
 
3716
                  ((5, 1), (5, 5), (5, 6), (6, 0)),
 
3717
                  ()]},
 
3718
  { 'caption': 'slow-query-log',
 
3719
    'description': 'Enable|disable slow query log',
 
3720
    'name': 'slow-query-log',
 
3721
    'optype': { 'inversion': '5.1.29'},
 
3722
    'values': [ { 'default': 'off',
 
3723
                  'off': 'off',
 
3724
                  'on': 'on',
 
3725
                  'type': 'boolean'}],
 
3726
    'versions': [((5, 1, 12),), ((5, 1), (5, 4), (5, 5), (5, 6), (6, 0)), ()]},
 
3727
  { 'caption': 'slow_query_log_file',
 
3728
    'description': 'Name of the slow query log file',
 
3729
    'name': 'slow_query_log_file',
 
3730
    'values': [{ 'type': 'filename'}],
 
3731
    'versions': [((5, 1, 12),), ((5, 1), (5, 4), (5, 5), (5, 6), (6, 0)), ()]},
 
3732
  { 'caption': 'slow_launch_time',
 
3733
    'description': 'If creating the thread takes longer than this value (in seconds), the Slow_launch_threads counter will be incremented',
 
3734
    'name': 'slow_launch_time',
 
3735
    'values': [{ 'default': '2', 'type': 'numeric'}],
 
3736
    'versions': [ (),
 
3737
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
3738
                  ()]},
 
3739
  { 'caption': 'socket',
 
3740
    'description': 'Socket file to use for connection',
 
3741
    'name': 'socket',
 
3742
    'values': [{ 'default': '/tmp/mysql.sock', 'type': 'filename'}],
 
3743
    'versions': [ (),
 
3744
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
3745
                  ()]},
 
3746
  { 'caption': 'sort_buffer_size',
 
3747
    'description': 'Each thread that needs to do a sort allocates a buffer of this size',
 
3748
    'name': 'sort_buffer_size',
 
3749
    'values': [ { 'bitsize': '32',
 
3750
                  'default': '2097144',
 
3751
                  'maximum': '4294967295',
 
3752
                  'type': 'numeric'},
 
3753
                { 'bitsize': '64',
 
3754
                  'default': '2097144',
 
3755
                  'maximum': '18446744073709547520',
 
3756
                  'type': 'numeric'}],
 
3757
    'versions': [ (),
 
3758
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
3759
                  ()]},
 
3760
  { 'caption': 'sporadic-binlog-dump-fail',
 
3761
    'description': 'Option used by mysql-test for debugging and testing of replication',
 
3762
    'name': 'sporadic-binlog-dump-fail',
 
3763
    'values': [ { 'default': 'false',
 
3764
                  'off': 'false',
 
3765
                  'on': 'true',
 
3766
                  'type': 'boolean'}],
 
3767
    'versions': [ (),
 
3768
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
3769
                  ()]},
 
3770
  { 'caption': 'sql-bin-update-same',
 
3771
    'description': 'The update log is deprecated since version 5.0, is replaced by the binary log and this option does nothing anymore',
 
3772
    'name': 'sql-bin-update-same',
 
3773
    'values': [ { 'default': 'false',
 
3774
                  'off': 'false',
 
3775
                  'on': 'true',
 
3776
                  'type': 'boolean'}],
 
3777
    'versions': [(), ((4, 1),), ()]},
 
3778
  { 'caption': 'sql-mode',
 
3779
    'description': 'Set the SQL server mode',
 
3780
    'name': 'sql-mode',
 
3781
    'values': [ { 'choice': [ 'ALLOW_INVALID_DATES',
 
3782
                              'ANSI_QUOTES',
 
3783
                              'ERROR_FOR_DIVISION_BY_ZERO',
 
3784
                              'HIGH_NOT_PRECEDENCE',
 
3785
                              'IGNORE_SPACE',
 
3786
                              'NO_AUTO_CREATE_USER',
 
3787
                              'NO_AUTO_VALUE_ON_ZERO',
 
3788
                              'NO_BACKSLASH_ESCAPES',
 
3789
                              'NO_DIR_IN_CREATE',
 
3790
                              'NO_ENGINE_SUBSTITUTION',
 
3791
                              'NO_FIELD_OPTIONS',
 
3792
                              'NO_KEY_OPTIONS',
 
3793
                              'NO_TABLE_OPTIONS',
 
3794
                              'NO_UNSIGNED_SUBTRACTION',
 
3795
                              'NO_ZERO_DATE',
 
3796
                              'NO_ZERO_IN_DATE',
 
3797
                              'ONLY_FULL_GROUP_BY',
 
3798
                              'PAD_CHAR_TO_FULL_LENGTH',
 
3799
                              'PIPES_AS_CONCAT',
 
3800
                              'REAL_AS_FLOAT',
 
3801
                              'STRICT_ALL_TABLES',
 
3802
                              'STRICT_TRANS_TABLES'],
 
3803
                  'default': "''",
 
3804
                  'type': 'set'}],
 
3805
    'versions': [ (),
 
3806
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
3807
                  ()]},
 
3808
  { 'caption': 'ssl',
 
3809
    'description': 'Enable SSL for connection (automatically enabled with other flags)',
 
3810
    'disabledby': 'skip-ssl',
 
3811
    'name': 'ssl',
 
3812
    'values': [ { 'default': 'false',
 
3813
                  'off': 'disabledby',
 
3814
                  'on': 'true',
 
3815
                  'type': 'boolean'}],
 
3816
    'versions': [ (),
 
3817
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
3818
                  ()]},
 
3819
  { 'caption': 'ssl-ca',
 
3820
    'description': 'CA file in PEM format (check OpenSSL docs, implies --ssl)',
 
3821
    'name': 'ssl-ca',
 
3822
    'values': [{ 'type': 'filename'}],
 
3823
    'versions': [ ((5, 0, 23), (5, 1, 11)),
 
3824
                  ( (4, 0),
 
3825
                    (4, 1),
 
3826
                    (5, 0),
 
3827
                    (5, 1),
 
3828
                    (5, 4),
 
3829
                    (5, 5),
 
3830
                    (5, 6),
 
3831
                    (6, 0)),
 
3832
                  ()]},
 
3833
  { 'caption': 'ssl-capath',
 
3834
    'description': 'CA directory (check OpenSSL docs, implies --ssl)',
 
3835
    'name': 'ssl-capath',
 
3836
    'values': [{ 'type': 'filename'}],
 
3837
    'versions': [ ((5, 0, 23), (5, 1, 11)),
 
3838
                  ( (4, 0),
 
3839
                    (4, 1),
 
3840
                    (5, 0),
 
3841
                    (5, 1),
 
3842
                    (5, 4),
 
3843
                    (5, 5),
 
3844
                    (5, 6),
 
3845
                    (6, 0)),
 
3846
                  ()]},
 
3847
  { 'caption': 'ssl-cert',
 
3848
    'description': 'X509 cert in PEM format (implies --ssl)',
 
3849
    'name': 'ssl-cert',
 
3850
    'values': [{ 'type': 'filename'}],
 
3851
    'versions': [ ((5, 0, 23), (5, 1, 11)),
 
3852
                  ( (4, 0),
 
3853
                    (4, 1),
 
3854
                    (5, 0),
 
3855
                    (5, 1),
 
3856
                    (5, 4),
 
3857
                    (5, 5),
 
3858
                    (5, 6),
 
3859
                    (6, 0)),
 
3860
                  ()]},
 
3861
  { 'caption': 'ssl-cipher',
 
3862
    'description': 'SSL cipher to use (implies --ssl)',
 
3863
    'name': 'ssl-cipher',
 
3864
    'values': [{ 'type': 'filename'}],
 
3865
    'versions': [ ((5, 0, 23), (5, 1, 11)),
 
3866
                  ( (4, 0),
 
3867
                    (4, 1),
 
3868
                    (5, 0),
 
3869
                    (5, 1),
 
3870
                    (5, 4),
 
3871
                    (5, 5),
 
3872
                    (5, 6),
 
3873
                    (6, 0)),
 
3874
                  ()]},
 
3875
  { 'caption': 'ssl-key',
 
3876
    'description': 'X509 key in PEM format (implies --ssl)',
 
3877
    'name': 'ssl-key',
 
3878
    'values': [{ 'type': 'string'}],
 
3879
    'versions': [ ((5, 0, 23), (5, 1, 11)),
 
3880
                  ( (4, 0),
 
3881
                    (4, 1),
 
3882
                    (5, 0),
 
3883
                    (5, 1),
 
3884
                    (5, 4),
 
3885
                    (5, 5),
 
3886
                    (5, 6),
 
3887
                    (6, 0)),
 
3888
                  ()]},
 
3889
  { 'caption': 'ssl-verify-server-cert',
 
3890
    'description': 'For clients, verify server host name against Common Name in server certificate',
 
3891
    'name': 'ssl-verify-server-cert',
 
3892
    'values': [{ 'off': '0', 'on': '1', 'type': 'boolean'}],
 
3893
    'versions': [((5, 1, 11),), ((5, 1), (5, 4), (5, 5), (5, 6), (6, 0)), ()]},
 
3894
  { 'caption': 'symbolic-links',
 
3895
    'description': 'Use symbolic links',
 
3896
    'disabledby': 'skip-symbolic-links',
 
3897
    'name': 'symbolic-links',
 
3898
    'values': [{ 'off': '0', 'on': '1', 'type': 'boolean'}],
 
3899
    'versions': [ (),
 
3900
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
3901
                  ()]},
 
3902
  { 'caption': 'sync-bdb-logs',
 
3903
    'deprecated': None,
 
3904
    'description': 'Synchronously flush Berkeley DB logs. Enabled by default',
 
3905
    'disabledby': 'skip-sync-bdb-logs',
 
3906
    'name': 'sync-bdb-logs',
 
3907
    'values': [ { 'default': 'true',
 
3908
                  'off': 'disabledby',
 
3909
                  'on': 'true',
 
3910
                  'type': 'boolean'}],
 
3911
    'versions': [(), ((4, 1), (5, 0)), ()]},
 
3912
  { 'caption': 'sync_binlog',
 
3913
    'description': 'Synchronously flush binary log to disk after every #th event',
 
3914
    'name': 'sync_binlog',
 
3915
    'values': [ { 'bitsize': '32',
 
3916
                  'default': '0',
 
3917
                  'maximum': '4294967295',
 
3918
                  'minimum': '0',
 
3919
                  'type': 'numeric'},
 
3920
                { 'bitsize': '64',
 
3921
                  'default': '0',
 
3922
                  'maximum': '18446744073709547520',
 
3923
                  'minimum': '0',
 
3924
                  'type': 'numeric'}],
 
3925
    'versions': [ ((4, 1, 3), (5, 0, 1)),
 
3926
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
3927
                  ()]},
 
3928
  { 'caption': 'sync_frm',
 
3929
    'description': 'Sync .frm to disk on create. Enabled by default',
 
3930
    'name': 'sync_frm',
 
3931
    'values': [ { 'default': 'true',
 
3932
                  'off': 'false',
 
3933
                  'on': 'true',
 
3934
                  'type': 'boolean'}],
 
3935
    'versions': [ (),
 
3936
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
3937
                  ()]},
 
3938
  { 'caption': 'sync_master_info',
 
3939
    'description': 'Synchronize master.info to disk after every #th event.',
 
3940
    'name': 'sync_master_info',
 
3941
    'values': [ { 'bitsize': '32',
 
3942
                  'default': '0',
 
3943
                  'maximum': '4294967295',
 
3944
                  'minimum': '0',
 
3945
                  'type': 'numeric'},
 
3946
                { 'bitsize': '64',
 
3947
                  'default': '0',
 
3948
                  'maximum': '18446744073709547520',
 
3949
                  'minimum': '0',
 
3950
                  'type': 'numeric'}],
 
3951
    'versions': [((6, 0, 11),), ((5, 5), (5, 6), (6, 0)), ()]},
 
3952
  { 'caption': 'sync_relay_log',
 
3953
    'description': 'Synchronize relay log to disk after every #th event.',
 
3954
    'name': 'sync_relay_log',
 
3955
    'values': [ { 'bitsize': '32',
 
3956
                  'default': '0',
 
3957
                  'maximum': '4294967295',
 
3958
                  'minimum': '0',
 
3959
                  'type': 'numeric'},
 
3960
                { 'bitsize': '64',
 
3961
                  'default': '0',
 
3962
                  'maximum': '18446744073709547520',
 
3963
                  'minimum': '0',
 
3964
                  'type': 'numeric'}],
 
3965
    'versions': [((6, 0, 10),), ((5, 5), (5, 6), (6, 0)), ()]},
 
3966
  { 'caption': 'sync_relay_log_info',
 
3967
    'description': 'Synchronize relay.info file to disk after every #th event.',
 
3968
    'name': 'sync_relay_log_info',
 
3969
    'values': [ { 'bitsize': '32',
 
3970
                  'default': '0',
 
3971
                  'maximum': '4294967295',
 
3972
                  'minimum': '0',
 
3973
                  'type': 'numeric'},
 
3974
                { 'bitsize': '64',
 
3975
                  'default': '0',
 
3976
                  'maximum': '18446744073709547520',
 
3977
                  'minimum': '0',
 
3978
                  'type': 'numeric'}],
 
3979
    'versions': [((6, 0, 11),), ((5, 5), (5, 6), (6, 0)), ()]},
 
3980
  { 'caption': 'sysdate-is-now',
 
3981
    'description': 'Nondefault option to alias SYSDATE() to NOW() to make it safe-replicable',
 
3982
    'name': 'sysdate-is-now',
 
3983
    'values': [ { 'default': 'false',
 
3984
                  'off': 'false',
 
3985
                  'on': 'true',
 
3986
                  'type': 'boolean'}],
 
3987
    'versions': [ ((5, 0, 20), (5, 1, 8)),
 
3988
                  ((5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
3989
                  ()]},
 
3990
  { 'caption': 'table_cache',
 
3991
    'deprecated': (5, 1, 3),
 
3992
    'description': 'The number of open tables for all threads',
 
3993
    'name': 'table_cache',
 
3994
    'values': [ { 'default': '64',
 
3995
                  'maximum': '524288',
 
3996
                  'minimum': '1',
 
3997
                  'type': 'numeric'}],
 
3998
    'versions': [(), ((4, 1), (5, 0), (5, 1)), ((5, 1, 3),)]},
 
3999
  { 'caption': 'table_definition_cache',
 
4000
    'description': 'The number of table definitions that can be stored in the definition cache.',
 
4001
    'name': 'table_definition_cache',
 
4002
    'values': [ { 'default': '128',
 
4003
                  'maximum': '524288',
 
4004
                  'minimum': '1',
 
4005
                  'outversion': (5, 1, 24),
 
4006
                  'type': 'numeric'},
 
4007
                { 'default': '256',
 
4008
                  'inversion': (5, 1, 25),
 
4009
                  'maximum': '524288',
 
4010
                  'minimum': '256',
 
4011
                  'type': 'numeric'},
 
4012
                { 'default': '400',
 
4013
                  'inversion': (5, 4, 0),
 
4014
                  'maximum': '524288',
 
4015
                  'minimum': '400',
 
4016
                  'type': 'numeric'},
 
4017
                { 'default': '128',
 
4018
                  'inversion': (6, 0, 0),
 
4019
                  'maximum': '524288',
 
4020
                  'minimum': '1',
 
4021
                  'outversion': (6, 0, 5),
 
4022
                  'type': 'numeric'},
 
4023
                { 'default': '256',
 
4024
                  'inversion': (6, 0, 6),
 
4025
                  'maximum': '524288',
 
4026
                  'minimum': '256',
 
4027
                  'type': 'numeric'}],
 
4028
    'versions': [((5, 1, 3),), ((5, 1), (5, 4), (5, 5), (5, 6), (6, 0)), ()]},
 
4029
  { 'caption': 'table_lock_wait_timeout',
 
4030
    'description': 'Currently unused',
 
4031
    'name': 'table_lock_wait_timeout',
 
4032
    'values': [ { 'default': '50',
 
4033
                  'maximum': '1073741824',
 
4034
                  'minimum': '1',
 
4035
                  'type': 'numeric'}],
 
4036
    'versions': [ ((5, 0, 10),),
 
4037
                  ((5, 0), (5, 1), (5, 4), (5, 5), (6, 0)),
 
4038
                  ((5, 5, 3), (6, 0, 14))]},
 
4039
  { 'caption': 'table_open_cache',
 
4040
    'description': 'The number of open tables for all threads',
 
4041
    'name': 'table_open_cache',
 
4042
    'values': [ { 'default': '64',
 
4043
                  'maximum': '524288',
 
4044
                  'minimum': '64',
 
4045
                  'type': 'numeric'},
 
4046
                { 'default': '400',
 
4047
                  'inversion': (5, 4, 0),
 
4048
                  'maximum': '524288',
 
4049
                  'minimum': '64',
 
4050
                  'outversion': (5, 4, 1),
 
4051
                  'type': 'numeric'},
 
4052
                { 'default': '400',
 
4053
                  'inversion': (5, 4, 2),
 
4054
                  'maximum': '524288',
 
4055
                  'minimum': '400',
 
4056
                  'type': 'numeric'},
 
4057
                { 'default': '64',
 
4058
                  'inversion': (6, 0, 0),
 
4059
                  'maximum': '524288',
 
4060
                  'minimum': '64',
 
4061
                  'type': 'numeric'}],
 
4062
    'versions': [((5, 1, 3),), ((5, 1), (5, 4), (5, 5), (5, 6), (6, 0)), ()]},
 
4063
  { 'caption': 'tc-heuristic-recover',
 
4064
    'description': 'Decision to use in heuristic recover process. Possible values are COMMIT or ROLLBACK',
 
4065
    'name': 'tc-heuristic-recover',
 
4066
    'values': [{ 'choice': ['COMMIT', 'RECOVER'], 'type': 'enum'}],
 
4067
    'versions': [ ((5, 0, 3),),
 
4068
                  ((5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
4069
                  ()]},
 
4070
  { 'caption': 'temp-pool',
 
4071
    'description': 'Using this option will cause most temporary files created to use a small set of names, rather than a unique name for each new file',
 
4072
    'name': 'temp-pool',
 
4073
    'values': [ { 'default': 'true',
 
4074
                  'off': 'false',
 
4075
                  'on': 'true',
 
4076
                  'type': 'boolean'}],
 
4077
    'versions': [ (),
 
4078
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
4079
                  ()]},
 
4080
  { 'caption': 'thread_cache_size',
 
4081
    'description': 'How many threads we should keep in a cache for reuse',
 
4082
    'name': 'thread_cache_size',
 
4083
    'values': [ { 'default': '0',
 
4084
                  'maximum': '16384',
 
4085
                  'minimum': '0',
 
4086
                  'type': 'numeric'}],
 
4087
    'versions': [ (),
 
4088
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
4089
                  ()]},
 
4090
  { 'caption': 'thread_concurrency',
 
4091
    'description': 'Permits the application to give the threads system a hint for the desired number of threads that should be run at the same time',
 
4092
    'name': 'thread_concurrency',
 
4093
    'values': [ { 'default': '10',
 
4094
                  'maximum': '512',
 
4095
                  'minimum': '1',
 
4096
                  'type': 'numeric'}],
 
4097
    'versions': [ (),
 
4098
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
4099
                  ()]},
 
4100
  { 'caption': 'thread_handling',
 
4101
    'description': 'The thread-handling model',
 
4102
    'name': 'thread_handling',
 
4103
    'values': [ { 'choice': ['no-threads', 'one-thread-per-connection'],
 
4104
                  'outversion': (6, 0, 3),
 
4105
                  'type': 'enum'},
 
4106
                { 'choice': [ 'no-threads',
 
4107
                              'one-thread-per-connection',
 
4108
                              'pool-of-threads'],
 
4109
                  'inversion': (6, 0, 4),
 
4110
                  'type': 'enum'}],
 
4111
    'versions': [((5, 1, 17),), ((5, 1), (5, 4), (5, 5), (5, 6), (6, 0)), ()]},
 
4112
  { 'caption': 'thread_pool_size',
 
4113
    'description': 'The size of the thread pool',
 
4114
    'name': 'thread_pool_size',
 
4115
    'values': [ { 'default': '20',
 
4116
                  'maximum': '16384',
 
4117
                  'minimum': '1',
 
4118
                  'type': 'numeric'}],
 
4119
    'versions': [((6, 0, 4),), ((6, 0),), ((6, 0, 14),)]},
 
4120
  { 'caption': 'thread_stack',
 
4121
    'description': 'The stack size for each thread',
 
4122
    'name': 'thread_stack',
 
4123
    'values': [ { 'bitsize': '32',
 
4124
                  'blocksize': '1024',
 
4125
                  'default': '196608',
 
4126
                  'maximum': '4294967295',
 
4127
                  'minimum': '131072',
 
4128
                  'type': 'numeric'},
 
4129
                { 'bitsize': '64',
 
4130
                  'blocksize': '1024',
 
4131
                  'default': '262144',
 
4132
                  'maximum': '18446744073709547520',
 
4133
                  'minimum': '131072',
 
4134
                  'type': 'numeric'}],
 
4135
    'versions': [ (),
 
4136
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
4137
                  ()]},
 
4138
  { 'caption': 'timed_mutexes',
 
4139
    'description': 'Specify whether to time mutexes (only InnoDB mutexes are currently supported)',
 
4140
    'name': 'timed_mutexes',
 
4141
    'values': [ { 'default': 'off',
 
4142
                  'off': 'off',
 
4143
                  'on': 'on',
 
4144
                  'type': 'boolean'}],
 
4145
    'versions': [ ((5, 0, 3),),
 
4146
                  ((5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
4147
                  ()]},
 
4148
  { 'caption': 'tmp_table_size',
 
4149
    'description': 'If an in-memory temporary table exceeds this size, MySQL will automatically convert it to an on-disk MyISAM table',
 
4150
    'name': 'tmp_table_size',
 
4151
    'values': [ { 'default': 'system dependent',
 
4152
                  'maximum': '4294967295',
 
4153
                  'minimum': '1024',
 
4154
                  'type': 'numeric'}],
 
4155
    'versions': [ (),
 
4156
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
4157
                  ()]},
 
4158
  { 'caption': 'tmpdir',
 
4159
    'description': 'Path for temporary files',
 
4160
    'name': 'tmpdir',
 
4161
    'values': [{ 'type': 'filename'}],
 
4162
    'versions': [ (),
 
4163
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
4164
                  ()]},
 
4165
  { 'caption': 'transaction-isolation',
 
4166
    'description': 'Default transaction isolation level',
 
4167
    'name': 'transaction-isolation',
 
4168
    'values': [ { 'choice': [ 'READ-UNCOMMITTED',
 
4169
                              'READ-COMMITTED',
 
4170
                              'REPEATABLE-READ',
 
4171
                              'SERIALIZABLE'],
 
4172
                  'type': 'enum'}],
 
4173
    'versions': [ (),
 
4174
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
4175
                  ()]},
 
4176
  { 'caption': 'transaction_alloc_block_size',
 
4177
    'description': 'Allocation block size for transactions to be stored in binary log',
 
4178
    'name': 'transaction_alloc_block_size',
 
4179
    'values': [ { 'bitsize': '32',
 
4180
                  'blocksize': '1024',
 
4181
                  'default': '8192',
 
4182
                  'maximum': '4294967295',
 
4183
                  'minimum': '1024',
 
4184
                  'type': 'numeric'},
 
4185
                { 'bitsize': '64',
 
4186
                  'blocksize': '1024',
 
4187
                  'default': '8192',
 
4188
                  'maximum': '18446744073709547520',
 
4189
                  'minimum': '1024',
 
4190
                  'type': 'numeric'}],
 
4191
    'versions': [ (),
 
4192
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
4193
                  ()]},
 
4194
  { 'caption': 'transaction_prealloc_size',
 
4195
    'description': 'Persistent buffer for transactions to be stored in binary log',
 
4196
    'name': 'transaction_prealloc_size',
 
4197
    'values': [ { 'bitsize': '32',
 
4198
                  'blocksize': '1024',
 
4199
                  'default': '4096',
 
4200
                  'maximum': '4294967295',
 
4201
                  'minimum': '1024',
 
4202
                  'type': 'numeric'},
 
4203
                { 'bitsize': '64',
 
4204
                  'blocksize': '1024',
 
4205
                  'default': '4096',
 
4206
                  'maximum': '18446744073709547520',
 
4207
                  'minimum': '1024',
 
4208
                  'type': 'numeric'}],
 
4209
    'versions': [ (),
 
4210
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
4211
                  ()]},
 
4212
  { 'caption': 'updatable_views_with_limit',
 
4213
    'description': 'This variable controls whether updates to a view can be made when the view does not contain all columns of the primary key',
 
4214
    'name': 'updatable_views_with_limit',
 
4215
    'values': [{ 'default': '1', 'off': '0', 'on': '1', 'type': 'boolean'}],
 
4216
    'versions': [ ((5, 0, 2),),
 
4217
                  ((5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
4218
                  ()]},
 
4219
  { 'caption': 'use-symbolic-links',
 
4220
    'deprecated': (5, 0),
 
4221
    'description': 'Enable symbolic link support. Deprecated option. Use --symbolic-links.',
 
4222
    'name': 'use-symbolic-links',
 
4223
    'values': [ { 'default': 'true',
 
4224
                  'off': 'false',
 
4225
                  'on': 'true',
 
4226
                  'type': 'boolean'}],
 
4227
    'versions': [(), ((5, 1), (5, 4), (6, 0)), ()]},
 
4228
  { 'caption': 'user',
 
4229
    'description': 'Run mysqld daemon as user',
 
4230
    'name': 'user',
 
4231
    'values': [{ 'type': 'string'}],
 
4232
    'versions': [ (),
 
4233
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
4234
                  ()]},
 
4235
  { 'caption': 'verbose',
 
4236
    'description': 'Used with --help option for detailed help',
 
4237
    'name': 'verbose',
 
4238
    'values': [{ 'off': 'del', 'on': 'name', 'type': 'boolean'}],
 
4239
    'versions': [ (),
 
4240
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
4241
                  ()]},
 
4242
  { 'caption': 'wait_timeout',
 
4243
    'description': 'The number of seconds the server waits for activity on a connection before closing it',
 
4244
    'name': 'wait_timeout',
 
4245
    'values': [ { 'default': '28800',
 
4246
                  'maximum': '31536000',
 
4247
                  'minimum': '1',
 
4248
                  'type': 'numeric'},
 
4249
                { 'default': '28800',
 
4250
                  'maximum': '2147483',
 
4251
                  'minimum': '1',
 
4252
                  'platform': 'windows',
 
4253
                  'type': 'numeric'}],
 
4254
    'versions': [ (),
 
4255
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
4256
                  ()]},
 
4257
  { 'caption': 'warnings',
 
4258
    'deprecated': (5, 0),
 
4259
    'description': 'Deprecated; use --log-warnings instead',
 
4260
    'name': 'warnings',
 
4261
    'values': [ { 'bitsize': '32',
 
4262
                  'default': '1',
 
4263
                  'maximum': '4294967295',
 
4264
                  'minimum': '0',
 
4265
                  'type': 'numeric'},
 
4266
                { 'bitsize': '64',
 
4267
                  'default': '1',
 
4268
                  'maximum': '18446744073709547520',
 
4269
                  'minimum': '0',
 
4270
                  'type': 'numeric'}],
 
4271
    'versions': [(), ((4, 1), (5, 0)), ()]},
 
4272
  { 'caption': 'debug',
 
4273
    'description': 'Output debug log',
 
4274
    'name': 'debug',
 
4275
    'values': [{ 'default': "'d:t:o,/tmp/mysqld.trace'", 'type': 'string'}],
 
4276
    'versions': [ (),
 
4277
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
4278
                  ()]},
 
4279
  { 'caption': 'skip-safemalloc',
 
4280
    'description': "Don't check for memory overruns during each memory allocation",
 
4281
    'name': 'skip-safemalloc',
 
4282
    'values': [{ 'off': 'del', 'on': 'name', 'type': 'boolean'}],
 
4283
    'versions': [ (),
 
4284
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (6, 0)),
 
4285
                  ((5, 5, 6),)]},
 
4286
  { 'caption': 'skip-ssl',
 
4287
    'description': "Don't use ssl",
 
4288
    'name': 'skip-ssl',
 
4289
    'values': [{ 'off': 'del', 'on': 'name', 'type': 'boolean'}],
 
4290
    'versions': [ (),
 
4291
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
4292
                  ()]},
 
4293
  { 'caption': 'standalone',
 
4294
    'description': 'Instructs the MySQL server not to run as a service',
 
4295
    'name': 'standalone',
 
4296
    'values': [{ 'off': 'del', 'on': 'name', 'type': 'boolean'}],
 
4297
    'versions': [ (),
 
4298
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
4299
                  ()]},
 
4300
  { 'caption': 'enable-named-pipe',
 
4301
    'description': 'Enable support for named pipes.',
 
4302
    'name': 'enable-named-pipe',
 
4303
    'values': [{ 'off': 'del', 'on': 'name', 'type': 'boolean'}],
 
4304
    'versions': [(), ((5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)), ()]},
 
4305
  { 'caption': 'ndb_index_stat_cache_entries',
 
4306
    'description': 'Sets the granularity of the statistics by determining the number of starting and ending keys',
 
4307
    'name': 'ndb_index_stat_cache_entries',
 
4308
    'values': [ { 'default': '32',
 
4309
                  'maximum': '4294967295',
 
4310
                  'minimum': '0',
 
4311
                  'type': 'numeric'}],
 
4312
    'versions': [(), ((4, 1), (5, 0), (5, 1), (6, 0)), ((5, 1, 14),)]},
 
4313
  { 'caption': 'ndb_index_stat_enable',
 
4314
    'description': 'Use NDB index statistics in query optimization',
 
4315
    'name': 'ndb_index_stat_enable',
 
4316
    'values': [ { 'default': 'off',
 
4317
                  'off': 'off',
 
4318
                  'on': 'on',
 
4319
                  'type': 'boolean'}],
 
4320
    'versions': [(), ((4, 1), (5, 0), (5, 1), (6, 0)), ((5, 1, 19),)]},
 
4321
  { 'caption': 'ndb_index_stat_update_freq',
 
4322
    'description': 'How often to query data nodes instead of the statistics cache',
 
4323
    'name': 'ndb_index_stat_update_freq',
 
4324
    'values': [ { 'default': '20',
 
4325
                  'maximum': '4294967295',
 
4326
                  'minimum': '0',
 
4327
                  'type': 'numeric'}],
 
4328
    'versions': [(), ((4, 1), (5, 0), (5, 1), (6, 0)), ((5, 1, 14),)]},
 
4329
  { 'caption': 'ndb_optimized_node_selection',
 
4330
    'description': 'Determines how an SQL node chooses a cluster data node to use as transaction coordinator',
 
4331
    'name': 'ndb_optimized_node_selection',
 
4332
    'values': [ { 'default': 'on',
 
4333
                  'inversion': (4, 1, 9),
 
4334
                  'off': 'off',
 
4335
                  'on': 'on',
 
4336
                  'outversion': (5, 1, 22),
 
4337
                  'type': 'boolean'},
 
4338
                { 'default': '3',
 
4339
                  'inversion': (5, 1, 22),
 
4340
                  'maximum': '3',
 
4341
                  'minimum': '0',
 
4342
                  'type': 'numeric'}],
 
4343
    'versions': [((4, 1, 9),), ((4, 1), (5, 0), (5, 1)), ()]},
 
4344
  { 'caption': 'ndb_report_thresh_binlog_epoch_slip',
 
4345
    'description': 'This is a threshold on the number of epochs to be behind before reporting binlog status',
 
4346
    'name': 'ndb_report_thresh_binlog_epoch_slip',
 
4347
    'values': [ { 'default': '3',
 
4348
                  'maximum': '256',
 
4349
                  'minimum': '0',
 
4350
                  'type': 'numeric'}],
 
4351
    'versions': [(), ((4, 1), (5, 0), (5, 1), (6, 0)), ()]},
 
4352
  { 'caption': 'ndb_report_thresh_binlog_mem_usage',
 
4353
    'description': 'This is a threshold on the percentage of free memory remaining before reporting binlog status',
 
4354
    'name': 'ndb_report_thresh_binlog_mem_usage',
 
4355
    'values': [ { 'default': '10',
 
4356
                  'maximum': '10',
 
4357
                  'minimum': '0',
 
4358
                  'type': 'numeric'}],
 
4359
    'versions': [(), ((4, 1), (5, 0), (5, 1), (6, 0)), ()]},
 
4360
  { 'caption': 'ndb_use_transactions',
 
4361
    'description': 'Forces NDB to use a count of records during SELECT COUNT(*) query planning to speed up this type of query',
 
4362
    'name': 'ndb_use_transactions',
 
4363
    'values': [ { 'default': 'on',
 
4364
                  'off': 'off',
 
4365
                  'on': 'on',
 
4366
                  'type': 'boolean'}],
 
4367
    'versions': [((4, 1, 18),), ((4, 1), (5, 0), (5, 1), (6, 0)), ()]},
 
4368
  { 'caption': 'old',
 
4369
    'description': 'Cause the server to revert to certain behaviors present in older versions',
 
4370
    'name': 'old',
 
4371
    'values': [{ 'off': 'del', 'on': 'name', 'type': 'boolean'}],
 
4372
    'versions': [((5, 1, 18),), ((5, 1), (5, 4), (5, 5), (5, 6), (6, 0)), ()]},
 
4373
  { 'caption': 'lower_case_file_system',
 
4374
    'description': 'This variable describes the case sensitivity of file names on the file system',
 
4375
    'name': 'lower_case_file_system',
 
4376
    'values': [{ 'off': '0', 'on': '1', 'type': 'boolean'}],
 
4377
    'versions': [ (),
 
4378
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
4379
                  ()]},
 
4380
  { 'caption': 'time_zone',
 
4381
    'description': 'The current time zone.',
 
4382
    'name': 'time_zone',
 
4383
    'optype': { 'format': 'default_time_zone'},
 
4384
    'values': [{ 'type': 'string'}],
 
4385
    'versions': [ (),
 
4386
                  ((4, 1), (5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)),
 
4387
                  ()]},
 
4388
  { 'caption': 'skip-falcon',
 
4389
    'description': 'Disable the Falcon storage engine',
 
4390
    'name': 'skip-falcon',
 
4391
    'values': [{ 'off': 'del', 'on': 'name', 'type': 'boolean'}],
 
4392
    'versions': [(), ((6, 0),), ()]},
 
4393
  { 'caption': 'skip-ndbcluster',
 
4394
    'description': 'Disable the NDB Cluster storage engine',
 
4395
    'name': 'skip-ndbcluster',
 
4396
    'values': [{ 'off': 'del', 'on': 'name', 'type': 'boolean'}],
 
4397
    'versions': [(), ((5, 1), (6, 0)), ()]},
 
4398
  { 'caption': 'one-thread',
 
4399
    'description': 'Only use one thread (for debugging under Linux)',
 
4400
    'name': 'one-thread',
 
4401
    'values': [{ 'off': 'del', 'on': 'name', 'type': 'boolean'}],
 
4402
    'versions': [(), ((5, 0), (5, 1), (5, 4), (5, 5), (5, 6), (6, 0)), ()]},
 
4403
  { 'caption': 'skip-innodb',
 
4404
    'description': 'Disable InnoDB',
 
4405
    'name': 'skip-innodb',
 
4406
    'values': [{ 'off': 'del', 'on': 'name', 'type': 'boolean'}],
 
4407
    'versions': ((), ((5, 1),), ())}]