Thread: pgsql-server/ oc/src/sgml/ref/fetch.sgml oc/sr ...

pgsql-server/ oc/src/sgml/ref/fetch.sgml oc/sr ...

From
momjian@postgresql.org (Bruce Momjian - CVS)
Date:
CVSROOT:    /cvsroot
Module name:    pgsql-server
Changes by:    momjian@postgresql.org    02/12/30 10:31:52

Modified files:
    doc/src/sgml/ref: fetch.sgml move.sgml
    src/backend/commands: portalcmds.c
    src/backend/parser: gram.y
    src/backend/tcop: utility.c
    src/include/commands: portalcmds.h
    src/include/nodes: parsenodes.h

Log message:
    Cause FETCH 1 to return the current cursor row, or zero if at
    beginning/end of cursor.

    Have MOVE return 0/1 depending on cursor position.

    Matches SQL spec.

    Pass cursor counter from parser as a long rather than int.

    Doc updates.