4 messages in com.mysql.lists.bugsmysql jump and stay to 100% cpu
FromSent OnAttachments
alcane12 Jul 2003 16:03 
Sinisa Milivojevic14 Jul 2003 04:09 
alcane14 Jul 2003 12:45 
Sinisa Milivojevic28 Jul 2003 05:35 
Subject:mysql jump and stay to 100% cpu
From:alcane (alc@dune2.info)
Date:07/12/2003 04:03:57 PM
List:com.mysql.lists.bugs

Hi all,

i have accidently discover a bug on mysql, i have crash my web server, it
paralysed all services until we kill the process... after a request mysql jump and stay to 100% cpu.

it seems that mysqld crash when he receive a request that contain a simple
jointure (from table1 t1, table2 t2) and a right outer join just after.

for example this request works correctly :

select u.username from whosonline w, users u where u.user_id = w.user_id

and this crash the server :

select u.username from whosonline w, users u right outer join users u2 on u2.user_id = w.user_id where u.user_id = w.user_id

username varchar(50) all user_id int

it "works" on linux 4.0.12, mysql-4.0.13-win and mysql-3.23.38-win, i think all
versions are affected :/

i hope it's help you *

friendly