[HACKERS] regression in cvs tip

2003-06-01 Thread Joe Conway
I ran across a regression in unmodified cvs tip. On a 7.3.2 installation I can do: create table tse(f1 int, f2 int[], f3 text[]); insert into tse values(1,'{69,42,54}', '{g,d,e}'); # select * from tse where 1 in (select f1); f1 | f2 | f3 ++- 1 | {69,42,54} |

Re: [HACKERS] regression in cvs tip

2003-06-01 Thread Tom Lane
Joe Conway [EMAIL PROTECTED] writes: I ran across a regression in unmodified cvs tip. Looks like I forgot to make markTargetListOrigin handle outer-scope Vars (those with varlevelsup 0) :-(. Will fix, thanks for report! regards, tom lane