This patch adds a new GUC var, "default_with_oids", which follows the
Bruce Momjian <bruce@momjian.us>
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
Files
| Path | Change | +/− |
|---|---|---|
| doc/src/sgml/datatype.sgml | modified | +33 −14 |
| doc/src/sgml/ref/alter_table.sgml | modified | +7 −1 |
| doc/src/sgml/ref/create_table_as.sgml | modified | +33 −7 |
| doc/src/sgml/ref/create_table.sgml | modified | +33 −26 |
| doc/src/sgml/ref/pg_dump.sgml | modified | +6 −3 |
| doc/src/sgml/ref/prepare.sgml | modified | +7 −8 |
| doc/src/sgml/ref/select_into.sgml | modified | +25 −9 |
| doc/src/sgml/runtime.sgml | modified | +33 −2 |
| doc/src/sgml/spi.sgml | modified | +3 −3 |
| src/backend/executor/execMain.c | modified | +7 −5 |
| src/backend/parser/gram.y | modified | +8 −2 |
| src/backend/utils/misc/guc.c | modified | +12 −2 |
| src/backend/utils/misc/postgresql.conf.sample | modified | +2 −1 |
| src/bin/pg_dump/pg_dump.c | modified | +2 −3 |
| src/bin/psql/tab-complete.c | modified | +2 −1 |
| src/include/utils/guc.h | modified | +3 −1 |
| src/test/regress/expected/without_oid.out | modified | +1 −1 |
| src/test/regress/sql/without_oid.sql | modified | +1 −1 |