diff options
author | Bruce Momjian <bruce@momjian.us> | 2003-12-01 22:08:02 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2003-12-01 22:08:02 +0000 |
commit | 7ce9b7c0d8c8dbefc04978765422f760dcf3788c (patch) | |
tree | a45d3e6a01487c3a816f73ba5428d3ba64347a55 /src/backend/utils/misc/postgresql.conf.sample | |
parent | e7ca8674858f03a1bd6222bdb4de3d829cffbcc4 (diff) | |
download | postgresql-7ce9b7c0d8c8dbefc04978765422f760dcf3788c.tar.gz postgresql-7ce9b7c0d8c8dbefc04978765422f760dcf3788c.zip |
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
Diffstat (limited to 'src/backend/utils/misc/postgresql.conf.sample')
-rw-r--r-- | src/backend/utils/misc/postgresql.conf.sample | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/backend/utils/misc/postgresql.conf.sample b/src/backend/utils/misc/postgresql.conf.sample index e4305d98596..98d4d76d3ae 100644 --- a/src/backend/utils/misc/postgresql.conf.sample +++ b/src/backend/utils/misc/postgresql.conf.sample @@ -100,7 +100,7 @@ # QUERY TUNING #--------------------------------------------------------------------------- -# - Planner Method Enabling - +# - Planner Method Configuration - #enable_hashagg = true #enable_hashjoin = true @@ -255,6 +255,7 @@ #add_missing_from = true #regex_flavor = advanced # advanced, extended, or basic #sql_inheritance = true +#default_with_oids = true # - Other Platforms & Clients - |