1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

Bug#19709 rpl_tmporary fails on powermacg5

- Don't kill the active connection to the server, instead read 
   the connection id, switch connection and kill the first one from there.
This commit is contained in:
msvensson@neptunus.(none)
2006-05-12 09:13:37 +02:00
parent 9cd4c070c1
commit d3dd075227
2 changed files with 12 additions and 4 deletions

View File

@ -109,8 +109,6 @@ create temporary table t102 (id int);
set @session.pseudo_thread_id=200;
create temporary table t201 (id int);
create temporary table `#not_user_table_prefixed_with_hash_sign_no_harm` (id int);
set @con1_id=connection_id();
kill @con1_id;
create table t1(f int);
insert into t1 values (1);
select * from t1 /* must be 1 */;