Re: BUG #5105: "Select Into Strict" does not throw NO_DATA_FOUND

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: BUG #5105: "Select Into Strict" does not throw NO_DATA_FOUND
Дата
Msg-id 24297.1255015362@sss.pgh.pa.us
обсуждение исходный текст
Ответ на BUG #5105: "Select Into Strict" does not throw NO_DATA_FOUND  ("Walter Mesz" <meszwalter@yahoo.de>)
Список pgsql-bugs
"Walter Mesz" <meszwalter@yahoo.de> writes:
> my problem is that this select into does not throw a NO_DATA_FOUND if my
> select involves a max().

Well, a query using max() (or any other aggregate) is defined to return
exactly one row, independently of how many rows feed into the max().
So I'm not sure why you'd think that it should throw NO_DATA_FOUND.

If you want to test for not finding any rows in the underlying scan,
the best way would be to also compute count(*) and check if that's
zero.

            regards, tom lane

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

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: BUG #5102: Silent IN (list of strings) failure to detect syntax error when list is linewrapped
Следующее
От: "Kevin Grittner"
Дата:
Сообщение: Re: BUG #5105: "Select Into Strict" does not throw NO_DATA_FOUND