pgsql-server/doc/src/sgml plpython.sgml

Поиск
Список
Период
Сортировка
От momjian@postgresql.org (Bruce Momjian - CVS)
Тема pgsql-server/doc/src/sgml plpython.sgml
Дата
Msg-id 20020923015102.20795476128@postgresql.org
обсуждение исходный текст
Список pgsql-committers
CVSROOT:    /cvsroot
Module name:    pgsql-server
Changes by:    momjian@postgresql.org    02/09/22 21:51:02

Modified files:
    doc/src/sgml   : plpython.sgml

Log message:
    The valid return value should be MODIFY instead of MODIFIED.
    The error message said so :-)

    In 25.3. Using PL/Python

    If the trigger "when" is BEFORE, you may return None or "OK"
    from the Python function to indicate the tuple is unmodified, "SKIP"
    to abort the event, or "MODIFIED" to indicate you've modified the tuple.

    should read
    If the trigger "when" is BEFORE, you may return None or "OK"
    from the Python function to indicate the tuple is unmodified, "SKIP"
    to abort the event, or "MODIFY" to indicate you've modified the tuple.

    elein


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

Предыдущее
От: momjian@postgresql.org (Bruce Momjian - CVS)
Дата:
Сообщение: pgsql-server/src/interfaces/libpgtcl pgtclId.c
Следующее
От: momjian@postgresql.org (Bruce Momjian - CVS)
Дата:
Сообщение: pgsql-server/doc/TODO.detail win32