mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 20:12:31 +01:00
4 lines
127 B
Text
4 lines
127 B
Text
connect con1,localhost,root,,;
|
|
CREATE TEMPORARY TABLE tmp (i INT) ENGINE=InnoDB;
|
|
LOCK TABLES tmp AS p WRITE;
|
|
disconnect con1;
|