[Info-Ingres] How to crash a 9.1.1 server -
01-19-2010
, 06:59 AM
Hi All,
Try this...and yes it may crash the server...
createdb bowtest
sql bowtest << SQL_END
create table xx (a byte not null, b date not null) with nojournaling;
insert into xx values (byte(1), 'now');
\p\g
select max(b) from xx where a=1; /*Whoops: should have been byte(1) */
\p\g
rollback
\q
SQL_END
I typically get errors like:
E_AD8999 The function `=()' is not currently implemented.
And occasionaly worse with the server packing it in.
Seems to be ok in 9.2.0.
Martin Bowes |