Thread: pgsql-server/ oc/src/sgml/datatype.sgml oc/src ...

pgsql-server/ oc/src/sgml/datatype.sgml oc/src ...

From
momjian@svr1.postgresql.org (Bruce Momjian)
Date:
CVSROOT:    /cvsroot
Module name:    pgsql-server
Changes by:    momjian@svr1.postgresql.org    03/12/01 18:08:03

Modified files:
    doc/src/sgml   : datatype.sgml runtime.sgml spi.sgml
    doc/src/sgml/ref: alter_table.sgml create_table.sgml
                      create_table_as.sgml pg_dump.sgml prepare.sgml
                      select_into.sgml
    src/backend/executor: execMain.c
    src/backend/parser: gram.y
    src/backend/utils/misc: guc.c postgresql.conf.sample
    src/bin/pg_dump: pg_dump.c
    src/bin/psql   : tab-complete.c
    src/include/utils: guc.h
    src/test/regress/expected: without_oid.out
    src/test/regress/sql: without_oid.sql

Log message:
    This patch adds a new GUC var, "default_with_oids", which follows the
    proposal for eventually deprecating OIDs on user tables that I posted
    earlier to pgsql-hackers. pg_dump now always specifies WITH OIDS or
    WITHOUT OIDS when dumping a table. The documentation has been updated.

    Neil Conway