There is a method called ‘table_exists’ in EE that, well, checks to see if a table exists. This is done by doing this query:
SHOW TABLES FROM ‘client’ LIKE ‘exp_%’
There seems to be quite alot of these ‘show tables from’ queries in the process list for several clients….
After a quick grep, I see several areas in the EE code that will call this method and end up running that query.
Can someone shed some light on this query and why it’s run so much? Any way to disable or speed it up?