Thread: pgsql-server/ oc/src/sgml/reference.sgml oc/sr ...

pgsql-server/ oc/src/sgml/reference.sgml oc/sr ...

From
momjian@postgresql.org (Bruce Momjian - CVS)
Date:
CVSROOT:    /cvsroot
Module name:    pgsql-server
Changes by:    momjian@postgresql.org    02/08/04 00:31:44

Modified files:
    doc/src/sgml   : reference.sgml
    doc/src/sgml/ref: allfiles.sgml begin.sgml set_transaction.sgml
    src/backend/nodes: copyfuncs.c equalfuncs.c
    src/backend/parser: gram.y
    src/backend/tcop: postgres.c utility.c
    src/include/nodes: parsenodes.h

Log message:
    The attached patch implements START TRANSACTION, per SQL99. The
    functionality of the command is basically identical to that of
    BEGIN; it just accepts a few extra options (only one of which
    PostgreSQL currently implements), and is standards-compliant.
    The patch includes a simple regression test and documentation.

    [ Regression tests removed, per Peter.]

    Neil Conway