mirror of
https://github.com/MariaDB/server.git
synced 2025-01-27 01:04:19 +01:00
11 lines
293 B
Text
11 lines
293 B
Text
CREATE TABLE t1 (f1 INTEGER);
|
|
INSERT INTO t1 VALUES (1),(2),(3),(4),(5),(6),(7),(8),(9),(10);
|
|
SELECT COUNT(*) = 10 FROM t1;
|
|
COUNT(*) = 10
|
|
1
|
|
Killing server ...
|
|
INSERT INTO t1 VALUES (11),(12),(13),(14),(15),(16),(17),(18),(19),(20);
|
|
SELECT COUNT(*) = 20 FROM t1;
|
|
COUNT(*) = 20
|
|
1
|
|
DROP TABLE t1;
|