diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2008-01-30 18:35:55 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2008-01-30 18:35:55 +0000 |
commit | 47df4f668826c0646ae30d37971e4ff15e77b3e3 (patch) | |
tree | 2cde488d111ebeb6d3f99e78c1f42270ba337777 /src/backend/utils/misc/postgresql.conf.sample | |
parent | 6dfa40d69f17d86cedd0e630312b4103dac5f8b6 (diff) | |
download | postgresql-47df4f668826c0646ae30d37971e4ff15e77b3e3.tar.gz postgresql-47df4f668826c0646ae30d37971e4ff15e77b3e3.zip |
Add a GUC variable "synchronize_seqscans" to allow clients to disable the new
synchronized-scanning behavior, and make pg_dump disable sync scans so that
it will reliably preserve row ordering. Per recent discussions.
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 d9b9532395e..258a7d1a4f5 100644 --- a/src/backend/utils/misc/postgresql.conf.sample +++ b/src/backend/utils/misc/postgresql.conf.sample @@ -476,9 +476,10 @@ #backslash_quote = safe_encoding # on, off, or safe_encoding #default_with_oids = off #escape_string_warning = on -#standard_conforming_strings = off #regex_flavor = advanced # advanced, extended, or basic #sql_inheritance = on +#standard_conforming_strings = off +#synchronize_seqscans = on # - Other Platforms and Clients - |