summaryrefslogtreecommitdiff
path: root/src/backend/utils/misc/guc.c
Commit message (Expand)AuthorAgeFilesLines
* Add a field to guc enums to allow hiding of values from display whileMagnus Hagander2008-05-281-72/+89
* Fix an old corner-case bug in set_config_option: push_old_value has to beTom Lane2008-05-261-111/+99
* Add support for tracking call counts and elapsed runtime for user-definedTom Lane2008-05-151-2/+17
* Convert wal_sync_method to guc enum.Magnus Hagander2008-05-121-10/+16
* Restructure some header files a bit, in particular heapam.h, by removing someAlvaro Herrera2008-05-121-1/+2
* Allow the planner's estimate of the fraction of a cursor's rows that will beTom Lane2008-05-021-1/+11
* Make the minimum allowed value of work_mem be 64KB always, rather than havingTom Lane2008-05-011-2/+2
* Some minor further cleanup around A_Const. Don't attach a typecast inTom Lane2008-04-291-10/+8
* Remove typename from A_Const.Alvaro Herrera2008-04-291-13/+31
* Cause EXPLAIN's VERBOSE option to print the target list (output column list)Tom Lane2008-04-181-11/+1
* Remove no-longer-used function assign_backslash_quote()Tom Lane2008-04-041-26/+1
* Convert backslash_quote guc to use enum.Magnus Hagander2008-04-041-12/+27
* Turn xmlbinary and xmloption GUC variables into enumsTurn xmlbinary andMagnus Hagander2008-04-041-60/+31
* Oops, add proper #ifdef for systems without support for syslog.Magnus Hagander2008-04-031-1/+3
* Convert syslog_facility guc to enum type.Magnus Hagander2008-04-031-41/+31
* Convert three more guc settings to enum type:Magnus Hagander2008-04-021-80/+58
* Simplify and standardize conversions between TEXT datums and ordinary CTom Lane2008-03-251-18/+10
* Fix postgres --describe-config for guc enums, breakage noted by Alvaro.Magnus Hagander2008-03-171-16/+13
* Some cleanups of enum-guc code, per comments from Tom.Magnus Hagander2008-03-161-10/+44
* Implement enum type for guc parameters, and convert a couple of existingMagnus Hagander2008-03-101-218/+389
* Document and enforce that the usable range of setseed() arguments isTom Lane2008-03-101-2/+2
* Increase the default value of log_min_messages to WARNING, so thatTom Lane2008-03-101-3/+3
* Remove postmaster.c's check that NBuffers is at least twice MaxBackends.Tom Lane2008-03-091-10/+4
* Improve "bgwriter_lru_multiplier" GUC description.Bruce Momjian2008-03-061-2/+2
* Add a GUC variable "synchronize_seqscans" to allow clients to disable the newTom Lane2008-01-301-1/+11
* Minor editorial improvements in documentation of session_replication_role;Tom Lane2008-01-271-2/+2
* Avoid cluttering the postmaster log with bogus complaintsTom Lane2008-01-141-1/+11
* Update copyrights in source tree to 2008.Bruce Momjian2008-01-011-2/+2
* Improve consistency of error reporting in GUC assign_hook routines. SomeTom Lane2007-12-281-33/+68
* Wording improvementsPeter Eisentraut2007-12-271-2/+2
* pgindent run for 8.3.Bruce Momjian2007-11-151-133/+135
* Ensure that typmod decoration on a datatype name is validated in all cases,Tom Lane2007-11-111-2/+4
* Add parameter krb_realm used by GSSAPI, SSPI and KerberosMagnus Hagander2007-11-091-1/+11
* Minor improvements in backup and recovery:Tom Lane2007-09-261-4/+22
* Just-in-time background writing strategy. This code avoids re-scanningTom Lane2007-09-251-6/+6
* Simplify and rename some GUC variables, per various recent discussions:Tom Lane2007-09-241-43/+19
* Arrange for SET LOCAL's effects to persist until the end of the current topTom Lane2007-09-111-367/+349
* Revert temporary patch that made synchronous_commit default to OFF.Tom Lane2007-09-101-3/+2
* Set the correct context (PGC_SIGHUP) for log_autovacuum, per ITAGAKI Takahiro.Tom Lane2007-09-101-3/+3
* Code review for GUC revert-values-if-removed-from-postgresql.conf patch;Tom Lane2007-09-101-229/+214
* Support SET FROM CURRENT in CREATE/ALTER FUNCTION, ALTER DATABASE, ALTER ROLE.Tom Lane2007-09-031-24/+107
* Implement function-local GUC parameter settings, as per recent discussion.Tom Lane2007-09-031-25/+60
* Tsearch2 functionality migrates to core. The bulk of this work is byTom Lane2007-08-211-4/+14
* Provide for logfiles in machine readable CSV format. In consequence, renameAndrew Dunstan2007-08-191-5/+7
* TEMPORARILY make synchronous_commit default to OFF, so that we can get moreTom Lane2007-08-131-2/+3
* Fix thinko in multi-autovac-workers code: validity checks made byTom Lane2007-08-081-11/+7
* Fix crash caused by log_timezone patch if we attempt to emit any elog messagesTom Lane2007-08-041-1/+7
* Switch over to using the src/timezone functions for formatting timestampsTom Lane2007-08-041-1/+10
* Support an optional asynchronous commit mode, in which we don't flush WALTom Lane2007-08-011-3/+11
* Create a new dedicated Postgres process, "wal writer", which exists to writeTom Lane2007-07-241-1/+12