aboutsummaryrefslogtreecommitdiff
path: root/doc/src
Commit message (Collapse)AuthorAge
...
* Change the default value of standard_conforming_strings to on.Robert Haas2010-07-20
| | | | | This change should be publicized to driver maintainers at once and release-noted as an incompatibility with previous releases.
* Add server authentication over Unix-domain socketsPeter Eisentraut2010-07-18
| | | | | | | This adds a libpq connection parameter requirepeer that specifies the user name that the server process is expected to run under. reviewed by KaiGai Kohei
* Add a log_file_mode GUC that allows control of the file permissions set onTom Lane2010-07-16
| | | | | | | | | log files created by the syslogger process. In passing, make unix_file_permissions display its value in octal, same as log_file_mode now does. Martin Pihlak
* Fix typo spotted by Thom Brown.Heikki Linnakangas2010-07-16
|
* Add a paragraph explaining what restartpoints are. Mention thatHeikki Linnakangas2010-07-16
| | | | | | wal_keep_segments does not take effect during recovery. Fujii Masao
* Add support for dividing money by money (yielding a float8 result) and forTom Lane2010-07-16
| | | | | | casting between money and numeric. Andy Balholm, reviewed by Kevin Grittner
* Use an <xref> for restore_command reference. Marko TiikkajaTom Lane2010-07-14
|
* Allow full SSL certificate verification (wherein libpq checks its host nameTom Lane2010-07-14
| | | | | | | | | | | | | | | parameter against server cert's CN field) to succeed in the case where both host and hostaddr are specified. As with the existing precedents for Kerberos, GSSAPI, SSPI, it is the calling application's responsibility that host and hostaddr match up --- we just use the host name as given. Per bug #5559 from Christopher Head. In passing, make the error handling and messages for the no-host-name-given failure more consistent among these four cases, and correct a lie in the documentation: we don't attempt to reverse-lookup host from hostaddr if host is missing. Back-patch to 8.4 where SSL cert verification was introduced.
* Teach EXPLAIN to print PARAM_EXEC Params as the referenced expressions,Tom Lane2010-07-13
| | | | | | | | | | | | | | | | rather than just $N. This brings the display of nestloop-inner-indexscan plans back to where it's been, and incidentally improves the display of SubPlan parameters as well. In passing, simplify the EXPLAIN code by having it deal primarily in the PlanState tree rather than separately searching Plan and PlanState trees. This is noticeably cleaner for subplans, and about a wash elsewhere. One small difference from previous behavior is that EXPLAIN will no longer qualify local variable references in inner-indexscan plan nodes, since it no longer sees such nodes as possibly referencing multiple tables. Vars referenced through PARAM_EXEC Params are still forcibly qualified, though, so I don't think the display is any more confusing than before. Adjust a couple of examples in the documentation to match this behavior.
* Restore pl/pgsql default install release note item.Bruce Momjian2010-07-12
|
* 9.0 release note improvementsBruce Momjian2010-07-12
| | | | Erik Rijkers
* Spellcheck 9.0 release notes.Bruce Momjian2010-07-12
|
* Add a note about preferred window width to the section about codeTom Lane2010-07-10
| | | | formatting conventions.
* Clarify that "psql -c" ignores psqlrc files.Robert Haas2010-07-10
| | | | Tim Landscheidt
* Update release notes for 9.0 beta 3.Bruce Momjian2010-07-08
|
* Some small changes for plperl.sgml:Peter Eisentraut2010-07-08
| | | | | | | - wrapped long code-lines, for pdf - typo Erik Rijkers
* Install safeguard against running PL/Python 2 and 3 in the same sessionPeter Eisentraut2010-07-08
|
* Doc change: effected -> affected, per correction from Matthew WakelingBruce Momjian2010-07-08
|
* Add a cross-reference to precedence information to CREATE OPERATOR'sTom Lane2010-07-08
| | | | documentation. Per suggestion from Marc Cousin.
* Add support for TCP keepalives on Windows, both for backend and the newMagnus Hagander2010-07-08
| | | | libpq support.
* Document the interaction of write-barrier-enabled file systems, and BBUBruce Momjian2010-07-07
| | | | caches, per June email thread.
* Make log_temp_files based on kB, and revert docs & comments to match.Robert Haas2010-07-06
| | | | | | | Per extensive discussion on pgsql-hackers. We are deliberately not back-patching this even though the behavior of 8.3 and 8.4 is unquestionably broken, for fear of breaking existing users of this parameter. This incompatibility should be release-noted.
* Add note that using PL/Python 2 and 3 in the same session will probably crashPeter Eisentraut2010-07-06
|
* Support setting the keepalive idle time on MacOS X.Robert Haas2010-07-06
| | | | | | MacOS X uses TCP_KEEPALIVE rather than TCP_KEEPIDLE for this purpose. Thanks to Fujii Masao for the review.
* Split the LDFLAGS make variable into two parts: LDFLAGS is now used forTom Lane2010-07-05
| | | | | | | | | | | | | linking both executables and shared libraries, and we add on LDFLAGS_EX when linking executables or LDFLAGS_SL when linking shared libraries. This provides a significantly cleaner way of dealing with link-time switches than the former behavior. Also, make sure that the various platform-specific %.so: %.o rules incorporate LDFLAGS and LDFLAGS_SL; most of them missed that before. (I did not add these variables for the platforms that invoke $(LD) directly, however. It's not clear if we can do that safely, since for the most part we assume these variables use CC command-line syntax.) Per gripe from Aaron Swenson and subsequent investigation.
* Remove SGML tab.Bruce Momjian2010-07-03
|
* Make vacuum_defer_cleanup_age be PGC_SIGHUP level, since it's not sensibleTom Lane2010-07-03
| | | | | | | to have different values in different processes of the primary server. Also put it into the "Streaming Replication" GUC category; it doesn't belong in "Standby Servers" because you use it on the master not the standby. In passing also correct guc.c's idea of wal_keep_segments' category.
* Replace max_standby_delay with two parameters, max_standby_archive_delay andTom Lane2010-07-03
| | | | | | | | | | | | | | max_standby_streaming_delay, and revise the implementation to avoid assuming that timestamps found in WAL records can meaningfully be compared to clock time on the standby server. Instead, the delay limits are compared to the elapsed time since we last obtained a new WAL segment from archive or since we were last "caught up" to WAL data arriving via streaming replication. This avoids problems with clock skew between primary and standby, as well as other corner cases that the original coding would misbehave in, such as the primary server having significant idle time between transactions. Per my complaint some time ago and considerable ensuing discussion. Do some desultory editing on the hot standby documentation, too.
* Document more clearly on XML namespaces inside xpath functionBruce Momjian2010-07-03
| | | | Nikolay Samokhvalov
* Fix assorted misstatements and poor wording in the descriptions of the I/OTom Lane2010-07-03
| | | | | | | | | formats for geometric types. Per bug #5536 from Jon Strait, and my own testing. Back-patch to all supported branches, since this doco has been wrong right along -- we certainly haven't changed the I/O behavior of these types in many years.
* Additional cross-references to window functions documentation.Robert Haas2010-07-03
| | | | Erik Rijkers
* Remove hstore % text[] operator; use slice() function instead.Robert Haas2010-07-02
| | | | David Wheeler, with one small correction by me.
* Update 9.0 release notes so streaming replication and hot standby is notBruce Momjian2010-07-01
| | | | | | assumed to require continuous archiving. Per report from Fujii Masao
* Correct missing/misspelled surname.Andrew Dunstan2010-06-30
|
* Document that /bin/true on Windows is implemented by 'REM'.Bruce Momjian2010-06-30
|
* In documentation, use "lower case"/"upper case" consistently (use spaceBruce Momjian2010-06-29
| | | | between words).
* Document that shared_preload_libraries and local_preload_librariesBruce Momjian2010-06-29
| | | | lowercase the library names, unless double-quoted.
* Add compatibility note warning that plpgsql is now stricter about the columnTom Lane2010-06-29
| | | | | datatypes of composite results, per gripe from Marcel Asio. Some desultory copy-editing of plpgsql-related sections of the release notes.
* Add note clarifying that XML fragments don't accept DTDsPeter Eisentraut2010-06-29
| | | | per complaint from Craig Ringer
* Fix doc double-wording in non-durable patch.Bruce Momjian2010-06-28
| | | | Report from Thom Brown
* Add new Non-Durable Settings documentation section.Bruce Momjian2010-06-28
| | | | | Document that synchronous_commit can lose transactions in a db crash, not just a OS crash.
* Add guidelines for formatting errcontext stringsPeter Eisentraut2010-06-28
|
* Remove tab from SGML.Bruce Momjian2010-06-28
|
* Rewrite docs for new libpq keepalive parameters.Robert Haas2010-06-25
| | | | | | | The revised documentation makes it more clear that these are client-side parameters, rather than server side parameters. It also puts the main point of each parameter first, and consolidates the conditions under which it might be ignored in a single list at the end.
* Make AIX suggestions about disabling ipv6 more version-sensitive.Robert Haas2010-06-25
| | | | Chris Browne, based on a report from John Pierce.
* Fix log_temp_files docs and comments to say bytes not kilobytes.Simon Riggs2010-06-25
| | | | | stat(2) field st_size returns bytes not kilobytes. Bug found during recent performance tuning for PostgreSQL user.
* Some copy-editing of the Hot Standby documentation.Robert Haas2010-06-24
| | | | Thanks to Joshua Tolley for the review.
* Further 9.0 release notes updates.Robert Haas2010-06-24
| | | | Josh Berkus
* Mention that when alter rewrites a table, indexes are also rebuilt.Bruce Momjian2010-06-24
|
* Add TCP keepalive support to libpq.Robert Haas2010-06-23
| | | | | | | | | | | | | | | | This adds four additional connection parameters to libpq: keepalives, keepalives_idle, keepalives_count, and keepalives_interval. keepalives default to on, per discussion, but can be turned off by specifying keepalives=0. The remaining parameters, where supported, can be used to adjust how often keepalives are sent and how many can be lost before the connection is broken. The immediate motivation for this patch is to make sure that walreceiver will eventually notice if the master reboots without closing the connection cleanly, but it should be helpful in other cases as well. Tollef Fog Heen, Fujii Masao, and me.