pgsql/ oc/src/sgml/ref/copy.sgml rc/backend/co ... - Mailing list pgsql-committers

From momjian@postgresql.org (Bruce Momjian - CVS)
Subject pgsql/ oc/src/sgml/ref/copy.sgml rc/backend/co ...
Date
Msg-id 20020718044351.35AF6475DE3@postgresql.org
Whole thread Raw
List pgsql-committers
CVSROOT:    /cvsroot
Module name:    pgsql
Changes by:    momjian@postgresql.org    02/07/18 00:43:51

Modified files:
    doc/src/sgml/ref: copy.sgml
    src/backend/commands: copy.c
    src/backend/parser: gram.y
    src/backend/rewrite: rewriteHandler.c
    src/bin/pg_dump: pg_dump.c
    src/include/nodes: parsenodes.h
    src/include/rewrite: rewriteHandler.h
    src/test/regress: parallel_schedule serial_schedule

Log message:
    The attached patch (against HEAD) implements

    COPY x (a,d,c,b) from stdin;
    COPY x (a,c) to stdout;

    as well as the corresponding changes to pg_dump to use the new
    functionality.  This functionality is not available when using
    the BINARY option.  If a column is not specified in the COPY FROM
    statement, its default values will be used.

    In addition to this functionality, I tweaked a couple of the
    error messages emitted by the new COPY <options> checks.

    Brent Verner


pgsql-committers by date:

Previous
From: momjian@postgresql.org (Bruce Momjian - CVS)
Date:
Subject: pgsql/src/include/nodes parsenodes.h
Next
From: momjian@postgresql.org (Bruce Momjian - CVS)
Date:
Subject: pgsql/src/test/regress expected/copy2.out sql/ ...