Re: [GENERAL] variable not found in subplan target list

2011-11-02 Thread Tom Lane
Roger Niederland  writes:
> I stripped enough out of the database that it is only good for a test 
> case.  Here is a public url for getting at the database backup:

I've committed a fix for this:
http://git.postgresql.org/gitweb/?p=postgresql.git;a=commitdiff;h=e4e60e7b6125e77f679861ebf43cc6b9f9dbf16d

Thanks for the test case!

regards, tom lane

-- 
Sent via pgsql-general mailing list (pgsql-general@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-general


[GENERAL] variable not found in subplan target list

2011-11-02 Thread Roger Niederland

Hello,

I stripped down the original query to what is below.  I am not saying 
that the query below
is useful except to show an error I am getting in Postgresql 9.1.1 on 
both SL6.1 (64 bit) and

Windows 2008 server  9.1.1 (32-bit and 64-bit).  The error I am getting is:

ERROR: variable not found in subplan target list
SQL state: XX000

If I remove the inner join to person (at the end)  to works on 9.1.1

I tried this query on Postgresql 9.1.0 on Windows Vista (32-bit) and it 
works.

Also on the postgres 8.4 it works on both OS's.

Thanks,
Roger


SELECT
   COALESCE(FreshUps.employeeId, Appts.employeeId) AS employeeId
 FROM
 (
   SELECT
 COALESCE(Ups.employeeId, -1) AS employeeId
   FROM
   (
 SELECT Lead.salesmanId AS employeeId
 FROM Lead
 GROUP BY Lead.salesmanID) AS Ups
 ) AS FreshUps
 FULL OUTER JOIN
 (
   SELECT
 COALESCE(Ups.employeeId, -1) AS employeeId
   FROM
   (
 SELECT SalesAppointment.SalesmanID AS employeeID
 FROM SalesAppointment
 GROUP BY SalesAppointment.SalesmanID) AS Ups
 ) AS Appts USING (employeeId)

 INNER JOIN Employee USING (employeeid)
 INNER JOIN Person ON Employee.employeeId = Person.personId



Re: [GENERAL] variable not found in subplan target list

2011-11-01 Thread Roger Niederland



On 11/1/2011 8:30 PM, Tom Lane wrote:

Roger Niederland  writes:

I extracted the tables from the database which generates the error above
I eliminated most of the columns such that this query still exhibits
this behavior to reduce
the file size.  I have a zipped file from windows postgresql 9.1.1
(32-bit) which is about 1.5MBytes.
I verified that the database generated from this file will produce the
error.

If you'd send that to me off-list, I'd be happy to take a look.

regards, tom lane






I stripped enough out of the database that it is only good for a test 
case.  Here is a public

url for getting at the database backup:

http://dl.dropbox.com/u/13814973/test2.zip

The sql I posted earlier can be used on this to generate the error.

Thanks for taking a look at this!
Roger


--
Sent via pgsql-general mailing list (pgsql-general@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-general


Re: [GENERAL] variable not found in subplan target list

2011-11-01 Thread Tom Lane
Roger Niederland  writes:
> I extracted the tables from the database which generates the error above

> I eliminated most of the columns such that this query still exhibits 
> this behavior to reduce
> the file size.  I have a zipped file from windows postgresql 9.1.1 
> (32-bit) which is about 1.5MBytes.
> I verified that the database generated from this file will produce the 
> error.

If you'd send that to me off-list, I'd be happy to take a look.

regards, tom lane

-- 
Sent via pgsql-general mailing list (pgsql-general@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-general


Re: [GENERAL] variable not found in subplan target list

2011-11-01 Thread Roger Niederland



On 11/1/2011 3:54 PM, Roger Niederland wrote:

Hello,

I stripped down the original query to what is below.  I am not saying 
that the query below
is useful except to show an error I am getting in Postgresql 9.1.1 on 
both SL6.1 (64 bit) and
Windows 2008 server  9.1.1 (32-bit and 64-bit).  The error I am 
getting is:


ERROR: variable not found in subplan target list
SQL state: XX000

If I remove the inner join to person (at the end)  to works on 9.1.1

I tried this query on Postgresql 9.1.0 on Windows Vista (32-bit) and 
it works.

Also on the postgres 8.4 it works on both OS's.

Thanks,
Roger
(sorry if this is double posted, I sent this in about 24 hours ago, 
but it was stalled
due to me not subscribing to the list, I turned into a better citizen 
and subscribed)



SELECT
   COALESCE(FreshUps.employeeId, Appts.employeeId) AS employeeId
 FROM
 (
   SELECT
 COALESCE(Ups.employeeId, -1) AS employeeId
   FROM
   (
 SELECT Lead.salesmanId AS employeeId
 FROM Lead
 GROUP BY Lead.salesmanID) AS Ups
 ) AS FreshUps
 FULL OUTER JOIN
 (
   SELECT
 COALESCE(Ups.employeeId, -1) AS employeeId
   FROM
   (
 SELECT SalesAppointment.SalesmanID AS employeeID
 FROM SalesAppointment
 GROUP BY SalesAppointment.SalesmanID) AS Ups
 ) AS Appts USING (employeeId)

 INNER JOIN Employee USING (employeeid)
 INNER JOIN Person ON Employee.employeeId = Person.personId



-
I extracted the tables from the database which generates the error above

I eliminated most of the columns such that this query still exhibits 
this behavior to reduce
the file size.  I have a zipped file from windows postgresql 9.1.1 
(32-bit) which is about 1.5MBytes.
I verified that the database generated from this file will produce the 
error.


Thanks,
Roger


Re: [GENERAL] variable not found in subplan target list

2011-11-01 Thread Tom Lane
Roger Niederland  writes:
> I stripped down the original query to what is below.  I am not saying 
> that the query below
> is useful except to show an error I am getting in Postgresql 9.1.1 on 
> both SL6.1 (64 bit) and
> Windows 2008 server  9.1.1 (32-bit and 64-bit).  The error I am getting is:

> ERROR: variable not found in subplan target list

This is a pretty typical symptom of a certain class of planner bugs,
but I couldn't reproduce any such failure on the basis of what you
showed here.  Please provide a *self-contained* test case.

http://wiki.postgresql.org/wiki/Guide_to_reporting_problems

regards, tom lane

-- 
Sent via pgsql-general mailing list (pgsql-general@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-general


[GENERAL] variable not found in subplan target list

2011-11-01 Thread Roger Niederland

Hello,

I stripped down the original query to what is below.  I am not saying 
that the query below
is useful except to show an error I am getting in Postgresql 9.1.1 on 
both SL6.1 (64 bit) and

Windows 2008 server  9.1.1 (32-bit and 64-bit).  The error I am getting is:

ERROR: variable not found in subplan target list
SQL state: XX000

If I remove the inner join to person (at the end)  to works on 9.1.1

I tried this query on Postgresql 9.1.0 on Windows Vista (32-bit) and it 
works.

Also on the postgres 8.4 it works on both OS's.

Thanks,
Roger
(sorry if this is double posted, I sent this in about 24 hours ago, but 
it was stalled
due to me not subscribing to the list, I turned into a better citizen 
and subscribed)



SELECT
   COALESCE(FreshUps.employeeId, Appts.employeeId) AS employeeId
 FROM
 (
   SELECT
 COALESCE(Ups.employeeId, -1) AS employeeId
   FROM
   (
 SELECT Lead.salesmanId AS employeeId
 FROM Lead
 GROUP BY Lead.salesmanID) AS Ups
 ) AS FreshUps
 FULL OUTER JOIN
 (
   SELECT
 COALESCE(Ups.employeeId, -1) AS employeeId
   FROM
   (
 SELECT SalesAppointment.SalesmanID AS employeeID
 FROM SalesAppointment
 GROUP BY SalesAppointment.SalesmanID) AS Ups
 ) AS Appts USING (employeeId)

 INNER JOIN Employee USING (employeeid)
 INNER JOIN Person ON Employee.employeeId = Person.personId