On Fri, Oct 14, 2005 at 07:09:17PM -0400, Tom Lane wrote: > I wrote: > > I'm thinking that IN should be > > converted to a ScalarArrayOpExpr, ie > > x = ANY (ARRAY[val1,val2,val3,val4,...]) > Actually, there is one little thing in the way of doing this: it'll > fail if any of the IN-list elements are NULL, because we have not got > support for arrays with null elements. So we'd have to fix that first.
Hey Tom. Obviously your area of expertise, so please tell me where I'm wrong - But doesn't "x IN (NULL)" already fail to ever match, similar to "x = NULL"? (Assuming that compatibility switch isn't enabled) So, I'd hope people weren't using such an expression? :-) Or is that not good enough? What does NULL::text[] turn into? An empty string? Is that the danger? It might match against an empty string? Cheers, mark -- [EMAIL PROTECTED] / [EMAIL PROTECTED] / [EMAIL PROTECTED] __________________________ . . _ ._ . . .__ . . ._. .__ . . . .__ | Neighbourhood Coder |\/| |_| |_| |/ |_ |\/| | |_ | |/ |_ | | | | | | \ | \ |__ . | | .|. |__ |__ | \ |__ | Ottawa, Ontario, Canada One ring to rule them all, one ring to find them, one ring to bring them all and in the darkness bind them... http://mark.mielke.cc/ ---------------------------(end of broadcast)--------------------------- TIP 9: In versions below 8.0, the planner will ignore your desire to choose an index scan if your joining column's datatypes do not match