Re: [RDBO] Release soon

2007-04-30 Thread Jonathan Vanasco
On Apr 30, 2007, at 4:37 PM, John Siracusa wrote: Even though there are a bunch of things on my short-term list that I haven't gotten to, the change list is already quite large and I want to cut a release soon (it will be 0.764). Is there any feature that I previously mentioned I'd get to

[RDBO] feature request - is not

2007-04-30 Thread Jonathan Vanasco
i'd like to see an is not operator something like: '!NAME' = undef# COLUMN IS NOT NULL under postgres, booleans behave as such: example table create table test ( id integer not null , is_selected boolean ); insert into test ( id , is_selected ) values ( 1 , NULL