mirror of
https://github.com/MariaDB/server.git
synced 2025-01-27 17:33:44 +01:00
7 lines
129 B
Text
7 lines
129 B
Text
|
RESET MASTER;
|
||
|
CREATE TABLE t1 (a INT);
|
||
|
INSERT INTO t1 VALUES (1),(2),(3);
|
||
|
REPLACE INTO t1 VALUES (4);
|
||
|
DROP TABLE t1;
|
||
|
FLUSH LOGS;
|