mirror of
https://github.com/MariaDB/server.git
synced 2025-01-18 04:53:01 +01:00
12 lines
213 B
Text
12 lines
213 B
Text
|
CREATE TABLE t(i INT) ENGINE INNODB;
|
||
|
connect con1,localhost,root,,;
|
||
|
BEGIN;
|
||
|
LOCK TABLES t WRITE;
|
||
|
connection default;
|
||
|
# xtrabackup backup
|
||
|
connection con1;
|
||
|
COMMIT;
|
||
|
connection default;
|
||
|
disconnect con1;
|
||
|
DROP TABLE t;
|