pgsql/ oc/src/sgml/ref/copy.sgml rc/backend/co ...

From: momjian(at)postgresql(dot)org (Bruce Momjian - CVS)
To: pgsql-committers(at)postgresql(dot)org
Subject: pgsql/ oc/src/sgml/ref/copy.sgml rc/backend/co ...
Date: 2002-07-18 04:43:51
Message-ID: 20020718044351.35AF6475DE3@postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

CVSROOT: /cvsroot
Module name: pgsql
Changes by: momjian(at)postgresql(dot)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

Browse pgsql-committers by date

  From Date Subject
Next Message Bruce Momjian - CVS 2002-07-18 04:45:51 pgsql/src/test/regress expected/copy2.out sql/ ...
Previous Message Bruce Momjian - CVS 2002-07-18 04:42:29 pgsql/src/include/nodes parsenodes.h