Re: I think this is a bug for sure...

2001-06-15 Thread Simon Shapiro
Chris Bolt wrote: >>Assuming any SQL statement that causes the mysqld to go away is a bug: >> >>Assume table foo has a column bar bigint(20); >> >>select * from foo where bar = 0x7fff; >> >>The above works fine. The below crashes the server: >> >>select * from foo where bar = 922337

RE: I think this is a bug for sure...

2001-06-15 Thread Chris Bolt
> Assuming any SQL statement that causes the mysqld to go away is a bug: > > Assume table foo has a column bar bigint(20); > > select * from foo where bar = 0x7fff; > > The above works fine. The below crashes the server: > > select * from foo where bar = 9223372036854775807; > > They

I think this is a bug for sure...

2001-06-15 Thread Simon Shapiro
Assuming any SQL statement that causes the mysqld to go away is a bug: Assume table foo has a column bar bigint(20); select * from foo where bar = 0x7fff; The above works fine. The below crashes the server: select * from foo where bar = 9223372036854775807; They are equivalent.