mirror of
https://github.com/MariaDB/server.git
synced 2025-01-19 05:22:25 +01:00
9c86b35194
--disable_reconnect and --enable_reconnect to mysqltest so that it can be tested properly. (Bug #8866)
19 lines
393 B
Text
19 lines
393 B
Text
drop table if exists t1;
|
|
create table t1 (kill_id int);
|
|
insert into t1 values(connection_id());
|
|
select ((@id := kill_id) - kill_id) from t1;
|
|
((@id := kill_id) - kill_id)
|
|
0
|
|
kill @id;
|
|
select 1;
|
|
ERROR HY000: MySQL server has gone away
|
|
select ((@id := kill_id) - kill_id) from t1;
|
|
((@id := kill_id) - kill_id)
|
|
0
|
|
select @id != connection_id();
|
|
@id != connection_id()
|
|
1
|
|
select 4;
|
|
4
|
|
4
|
|
drop table t1;
|