Re: ERROR: variable not found in subplan target lists

Поиск
Список
Период
Сортировка
От Miroslav Šulc
Тема Re: ERROR: variable not found in subplan target lists
Дата
Msg-id 4704D899.90909@startnet.cz
обсуждение исходный текст
Ответ на ERROR: variable not found in subplan target lists  (Miroslav Šulc <miroslav.sulc@startnet.cz>)
Ответы Re: ERROR: variable not found in subplan target lists  (Miroslav Šulc <miroslav.sulc@startnet.cz>)
Список pgsql-general
Just copied client database from production server to my dev database
and ran the query on my dev database and it fails too so it seems it
also depends on whether some data are contained in the tables or not.

--
Miroslav Šulc


Miroslav Šulc napsal(a):
> Hi,
>
> I get this error when running this query (generated by code so it is not
> ideal though still valid I guess):
>
> SELECT Invoice.* FROM Invoice WHERE false AND InvoiceGroupId IN (SELECT
> InvoiceGroup.Id FROM InvoiceGroup INNER JOIN PartnerBranch ON
> InvoiceGroup.PartnerBranchId = PartnerBranch.Id  WHERE
> PartnerBranch.PartnerIdentificationId IN (132));
>
> Running these modified queries works without problems:
>
> SELECT Invoice.* FROM Invoice WHERE InvoiceGroupId IN (SELECT
> InvoiceGroup.Id FROM InvoiceGroup INNER JOIN PartnerBranch ON
> InvoiceGroup.PartnerBranchId = PartnerBranch.Id  WHERE
> PartnerBranch.PartnerIdentificationId IN (132));
>
> SELECT Invoice.* FROM Invoice WHERE false AND InvoiceGroupId IN (SELECT
> InvoiceGroup.Id FROM InvoiceGroup INNER JOIN PartnerBranch ON
> InvoiceGroup.PartnerBranchId = PartnerBranch.Id);
>
> SELECT Invoice.* FROM Invoice WHERE false AND InvoiceGroupId IN (SELECT
> InvoiceGroup.Id FROM InvoiceGroup INNER JOIN PartnerBranch ON
> InvoiceGroup.PartnerBranchId = PartnerBranch.Id  WHERE PartnerBranch.Id
> IN (132));
>
> The weird thing is it occurs only on production server, not on any other
> of pg installations. All of them are pg 8.2.4 on Gentoo Linux.
>
> I'd appreciate any help as the problem occurs on production server and I
> need to solve it ASAP.
>
> --
> Miroslav Šul

В списке pgsql-general по дате отправления:

Предыдущее
От: Miroslav Šulc
Дата:
Сообщение: ERROR: variable not found in subplan target lists
Следующее
От: Andreas Strasser
Дата:
Сообщение: Re: Design Question (Time Series Data)