Re: Re[2]: delete where column <=> null

2002-11-20 Thread Heikki Tuuri
David, - Original Message - From: "David Mechner" <[EMAIL PROTECTED]> Newsgroups: mailing.database.mysql Sent: Wednesday, November 20, 2002 1:59 PM Subject: Re[2]: delete where column <=> null > Ok, so it seems to be a bug. What's the procedure for report

Re: Re[2]: delete where column <=> null

2002-11-19 Thread John Ragan
just what the world needs: more non-standard sql syntax. > Ok, so it seems to be a bug. What's the procedure for reporting it (or > do the developers read this list?) > > -David > A minimal test case that demonstrates the bug: > create table t ( > id integer, > index id_idx(id) > ); > in

Re[2]: delete where column <=> null

2002-11-19 Thread Paul DuBois
At 15:58 -0500 11/19/02, David Mechner wrote: Ok, so it seems to be a bug. What's the procedure for reporting it Check the manual: http://www.mysql.com/doc/en/Bug_reports.html - Before posting, please check: http://www.mysq

Re[2]: delete where column <=> null

2002-11-19 Thread David Mechner
Ok, so it seems to be a bug. What's the procedure for reporting it (or do the developers read this list?) -David A minimal test case that demonstrates the bug: create table t ( id integer, index id_idx(id) ); insert into t(id) values(null); select * from t; delete from t where id <=> 1;