Обсуждение: pgsql/src/pl/plpgsql/src pl_exec.c

Поиск
Список
Период
Сортировка

pgsql/src/pl/plpgsql/src pl_exec.c

От
Tom Lane
Дата:
CVSROOT:    /home/projects/pgsql/cvsroot
Module name:    pgsql
Changes by:    tgl@hub.org    01/02/08 19:14:29

Modified files:
    src/pl/plpgsql/src: pl_exec.c

Log message:
    EXECUTE of a SELECT ... INTO now draws a 'not implemented' error,
    rather than executing the INTO clause with non-plpgsql semantics
    as it was doing for the last few weeks/months.  This keeps our options
    open for making it do the right plpgsql-ish thing in future without
    creating a backwards compatibility problem.  There is no loss of
    functionality since people can get the same behavior with CREATE TABLE AS.