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.