EVOLUTION-MANAGER
Edit File: lock_tables_read.result
DROP TABLE IF EXISTS counts; CREATE TABLE counts ( id INT PRIMARY KEY AUTO_INCREMENT ); LOCK TABLES counts READ; UNLOCK TABLES; DROP TABLE counts;