Bug #70721 innodb memcached innodb_config.sql file has been renamed
Submitted: 24 Oct 2013 19:52 Modified: 25 Oct 2013 6:10
Reporter: Morgan Tocker Email Updates:
Status: Duplicate Impact on me:
None 
Category:MySQL Server: Memcached Severity:S3 (Non-critical)
Version:5.7.2 OS:MacOS
Assigned to: CPU Architecture:Any

[24 Oct 2013 19:52] Morgan Tocker
Description:
I got this error mesage in my log file:

 InnoDB_Memcached: Unable to open table 'innodb_memcache/containers'
 InnoDB_Memcached: Please create config table'containers' in database 'innodb_memcache' by running 'innodb_config.sql'. Error: 'Table not found'

Which shows that I have not run the program share/innodb_memcached_config.sql.

How to repeat:
Install plugin with:
install plugin daemon_memcached soname "libmemcached.so";

But don't run second step, then restart mysqld.

Suggested fix:
Rename the file in the error message.  innodb_config.sql -> innodb_memcached_config.sql
[25 Oct 2013 6:10] MySQL Verification Team
Looks like http://bugs.mysql.com/bug.php?id=68684
[25 Oct 2013 6:12] MySQL Verification Team
Current sources has:

	if (err != DB_SUCCESS) {
		fprintf(stderr, " InnoDB_Memcached: Please create config table"
				"'%s' in database '%s' by running"
				" 'innodb_memcached_config.sql. error %d'\n",
			MCI_CFG_CONTAINER_TABLE, MCI_CFG_DB_NAME,
			err);
		err = DB_ERROR;
		goto func_exit;
	}