Bug #80277 Typo in schema name
Submitted: 5 Feb 2016 9:26 Modified: 10 Feb 2016 14:33
Reporter: Umesh Shastry Email Updates:
Status: Closed Impact on me:
None 
Category:MySQL Server: Documentation Severity:S3 (Non-critical)
Version:5.6, 5.7 OS:Any
Assigned to: CPU Architecture:Any

[5 Feb 2016 9:26] Umesh Shastry
Description:
While going through "Getting started with the InnoDB memcached Plugin" section of the page https://dev.mysql.com/doc/refman/5.7/en/innodb-memcached-setup.html observed that schema name has typo issue.

 

How to repeat:
Search for the string "inndb_memcach" in the page https://dev.mysql.com/doc/refman/5.7/en/innodb-memcached-setup.html

Then try to run the query as is after configuring the InnoDB memcached Plugin:

mysql> SELECT * FROM inndb_memcach.containers\G
ERROR 1146 (42S02): Table 'inndb_memcach.containers' doesn't exist

After replacing schema name - 

mysql> SELECT * FROM innodb_memcache.containers\G
*************************** 1. row ***************************
                  name: aaa
             db_schema: test
              db_table: demo_test
           key_columns: c1
         value_columns: c2
                 flags: c3
            cas_column: c4
    expire_time_column: c5
unique_idx_name_on_key: PRIMARY
1 row in set (0.00 sec)

Suggested fix:
Replace schema name "inndb_memcach" with "innodb_memcache"
Other references to the schema name seems to be correct.
[10 Feb 2016 14:33] Stefan Hinz
Posted by developer:
 
Thanks for reporting. This is fixed now.