https://bugzilla.novell.com/show_bug.cgi?id=385394 Summary: mysql query browser in version 5.0r12-56.2 crashes when straight_join is used Product: openSUSE 10.3 Version: Final Platform: i686 OS/Version: openSUSE 10.3 Status: NEW Severity: Normal Priority: P5 - None Component: Other AssignedTo: bnc-team-screening@forge.provo.novell.com ReportedBy: radisa_ilic@yahoo.com QAContact: qa@suse.de Found By: --- mysql query browser will crash if query contains straight join. Example: create table t1 ( id integer unsigned, name varchar(30), primary key (id) ); insert into t1 (id,name) values (1,'test1'); insert into t1 (id,name) values (2,'test2'); create table t2 ( id integer unsigned auto_increment, t1_id integer unsigned, value varchar(30), primary key (id) ); insert into t2 (t1_id,value) values (1,'value1'); insert into t2 (t1_id,value) values (1,'value2'); insert into t2 (t1_id,value) values (2,'value3'); insert into t2 (t1_id,value) values (2,'value4'); after this script which prepared data query can be ran: select t1.*, t2.* from t1 straight_join t2 where t2.t1_id=t1.id; and mysql query browser will crash -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.