mirror of
https://github.com/MariaDB/server.git
synced 2025-07-27 18:02:13 +03:00
Write information about restart in .result
Idea comes from MySQL which does something similar
This commit is contained in:
@ -43,6 +43,7 @@ a
|
||||
3
|
||||
BEGIN;
|
||||
INSERT INTO t2 VALUES (42);
|
||||
# restart
|
||||
disconnect con1;
|
||||
disconnect con2;
|
||||
connection default;
|
||||
@ -103,6 +104,7 @@ DELETE FROM t1;
|
||||
ROLLBACK;
|
||||
disconnect con3;
|
||||
connection con2;
|
||||
# restart
|
||||
disconnect con2;
|
||||
connection default;
|
||||
ERROR HY000: Lost connection to MySQL server during query
|
||||
@ -134,6 +136,7 @@ SELECT info FROM information_schema.processlist
|
||||
WHERE state = 'debug sync point: after_row_upd_extern';
|
||||
info
|
||||
UPDATE t3 SET c=REPEAT('j',3000) WHERE a=2
|
||||
# restart
|
||||
disconnect con2;
|
||||
connection default;
|
||||
ERROR HY000: Lost connection to MySQL server during query
|
||||
|
Reference in New Issue
Block a user