Bug #68917 document of innodb_sync_array_size seems incorrect
Submitted: 10 Apr 2013 12:54 Modified: 10 Apr 2013 19:32
Reporter: zhai weixiang (OCA) Email Updates:
Status: Closed Impact on me:
None 
Category:MySQL Server: Documentation Severity:S3 (Non-critical)
Version:5.6.10 OS:Any
Assigned to: Paul DuBois CPU Architecture:Any

[10 Apr 2013 12:54] zhai weixiang
Description:
actually the default value of  innodb_sync_array_size is 1 in MySQL 5.6.10

doc link:http://dev.mysql.com/doc/refman/5.6/en/innodb-parameters.html#sysvar_innodb_sync_array_siz...

quoted code:

static MYSQL_SYSVAR_ULONG(sync_array_size, srv_sync_array_size,
  PLUGIN_VAR_OPCMDARG,
  "Size of the mutex/lock wait array.",
  NULL, NULL,
  1,                    /* Default setting */
  1,                    /* Minimum value */
  1024, 0);             /* Maximum value */

How to repeat:
read document

Suggested fix:
fix it...
[10 Apr 2013 13:03] MySQL Verification Team
Indeed it is a docs bug,

mysql> select @@global.innodb_sync_array_size,version();
+---------------------------------+-----------+
| @@global.innodb_sync_array_size | version() |
+---------------------------------+-----------+
|                               1 | 5.6.12    |
+---------------------------------+-----------+
1 row in set (0.00 sec)
[10 Apr 2013 19:32] Paul DuBois
Thank you for your bug report. This issue has been addressed in the documentation. The updated documentation will appear on our website shortly, and will be included in the next release of the relevant products.