Warning for undefined cursor

Поиск
Список
Период
Сортировка
От Peter Eisentraut
Тема Warning for undefined cursor
Дата
Msg-id Pine.LNX.4.56.0307281106590.2256@krusty.credativ.de
обсуждение исходный текст
Ответы Re: Warning for undefined cursor  (Tom Lane <tgl@sss.pgh.pa.us>)
Re: Warning for undefined cursor  (Bruce Momjian <pgman@candle.pha.pa.us>)
Список pgsql-hackers
In backend/commands/portalcmds.c we have
       /* FIXME: shouldn't this be an ERROR? */       ereport(WARNING,
(errcode(ERRCODE_UNDEFINED_CURSOR),               errmsg("portal \"%s\" does not exist", stmt->portalname)));
 

The effect of this is that you can fetch from an undefined cursor and
(successfully) get zero rows plus this warning.  I propose that we change
this to an error.  Does anyone see a reason against this, except possibly
bugward compatibility?

-- 
Peter Eisentraut   peter_e@gmx.net


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

Предыдущее
От: "Shridhar Daithankar"
Дата:
Сообщение: Doubt w.r.t vacuum
Следующее
От: Peter Eisentraut
Дата:
Сообщение: Assignment scheme for implementation-defined error codes?