mirror of
https://github.com/MariaDB/server.git
synced 2025-08-07 00:04:31 +03:00
Write information about restart in .result
Idea comes from MySQL which does something similar
This commit is contained in:
@@ -1,3 +1,4 @@
|
||||
# restart
|
||||
create table t1 (c1 int, c2 geometry not null, spatial index (c2))engine=innodb;
|
||||
create procedure insert_t1(IN total int)
|
||||
begin
|
||||
@@ -17,6 +18,7 @@ end while;
|
||||
end|
|
||||
CALL insert_t1(367);
|
||||
COMMIT;
|
||||
# restart
|
||||
check table t1;
|
||||
Table Op Msg_type Msg_text
|
||||
test.t1 check status OK
|
||||
@@ -27,6 +29,7 @@ CALL update_t1(367);
|
||||
SET @poly1 = ST_GeomFromText('POLYGON((10000 10000, 10000 10350, 10350 10350, 10350 10000, 10000 10000))');
|
||||
delete from t1 where ST_Contains(@poly1, c2);
|
||||
COMMIT;
|
||||
# restart
|
||||
check table t1;
|
||||
Table Op Msg_type Msg_text
|
||||
test.t1 check status OK
|
||||
|
Reference in New Issue
Block a user