aboutsummaryrefslogtreecommitdiff
path: root/doc/src
Commit message (Collapse)AuthorAge
* Final updates of release notes for 8.4.1, 8.3.8, 8.2.14, 8.1.18, 8.0.22,Tom Lane2009-09-03
| | | | 7.4.26.
* Make LOAD of an already-loaded library into a no-op, instead of attemptingTom Lane2009-09-03
| | | | | | | | | | | | | | | | | | | | | | | to unload and re-load the library. The difficulty with unloading a library is that we haven't defined safe protocols for doing so. In particular, there's no safe mechanism for getting out of a "hook" function pointer unless libraries are unloaded in reverse order of loading. And there's no mechanism at all for undefining a custom GUC variable, so GUC would be left with a pointer to an old value that might or might not still be valid, and very possibly wouldn't be in the same place anymore. While the unload and reload behavior had some usefulness in easing development of new loadable libraries, it's of no use whatever to normal users, so just disabling it isn't giving up that much. Someday we might care to expend the effort to develop safe unload protocols; but even if we did, there'd be little certainty that every third-party loadable module was following them, so some security restrictions would still be needed. Back-patch to 8.2; before that, LOAD was superuser-only anyway. Security: unprivileged users could crash backend. CVE not assigned yet
* Update release notes for 7.4.26, 8.0.22, 8.1.18, 8.2.14, 8.3.8, 8.4.1.Bruce Momjian2009-08-27
|
* Fix imprecise documentation of random(): it never returns 1.0.Tom Lane2009-08-16
| | | | | This was changed in 8.2 but the documentation was not corrected. Per gripe from Sam Mason.
* Remove tabs from SGML.Bruce Momjian2009-08-15
|
* Re-add documentation for --no-readline option of psql, mistakenly removed a ↵Andrew Dunstan2009-08-10
| | | | decade ago. Backpatch to release 7.4.
* Split the release notes into a separate file for each (active) major branch,Tom Lane2009-05-02
| | | | | | | | | | | | as per my recent proposal. release.sgml itself is now just a stub that should change rarely; ideally, only once per major release to add a new include line. Most editing work will occur in the release-N.N.sgml files. To update a back branch for a minor release, just copy the appropriate release-N.N.sgml file(s) into the back branch. This commit doesn't change the end-product documentation at all, only the source layout. However, it makes it easy to start omitting ancient information from newer branches' documentation, should we ever decide to do that.
* Fix textsearch documentation examples to not recommend concatenating separateTom Lane2009-04-19
| | | | fields without putting a space between. Per gripe from Rick Schumeyer.
* Update URL to Python bug tracker. Backpatch to 8.3; doesn't seem worthy ofAlvaro Herrera2009-03-30
| | | | further backpatch.
* Fix contrib/hstore to throw an error for keys or values that don't fit in itsTom Lane2009-03-15
| | | | data structure, rather than silently truncating them. Andrew Gierth
* Update back-branch release notes.Tom Lane2009-03-12
|
* Update back-branch release notes.Tom Lane2009-01-30
|
* Document that SELECT FOR UPDATE/SHARE with ORDER BY might return resultsBruce Momjian2009-01-22
| | | | in the incorrect order, per bug 4593. Backpatch to 8.3.X.
* Change explanation of pg_switch_xlog()'s return value to match code.Heikki Linnakangas2009-01-15
|
* Update release notes for 8.3.5, 8.2.11, and 8.1.15 to mention the needBruce Momjian2009-01-09
| | | | | | | to reindex GiST indexes: If you were running a previous 8.X.X release, REINDEX all GiST indexes after the upgrade.
* Remove references to pgsql-ports and pgsql-patches mailing lists fromTom Lane2009-01-06
| | | | | various documentation, since those lists are now dead/deprecated. Point to pgsql-bugs and/or pgsql-hackers as appropriate.
* Clearify how processes are started by autovacuum, and what the effectMagnus Hagander2008-12-08
| | | | | | of autovacuum_max_workers parameter is. Per discussion with Alvaro.
* Add note that autovacuum can use up several times maintenance_work_mem,Magnus Hagander2008-12-08
| | | | with warning against setting it too high.
* Back-patch change to make DISCARD ALL release advisory locks.Tom Lane2008-11-27
| | | | Per discussion.
* information_schema.key_column_usage.position_in_unique_constraint wasTom Lane2008-11-25
| | | | | misdocumented as not being implemented. In reality it has worked since the release of 8.2.
* Since the xmlagg section was moved, "below" is no longer accurate.Peter Eisentraut2008-11-13
|
* Mention the tup_fetched column in pg_stat_database.Magnus Hagander2008-11-11
| | | | Greg Sabino Mullane
* Document that 'sslmode' is ignored for Unix domain socket communication;Bruce Momjian2008-11-04
| | | | backpatch to 8.3.X.
* Update back-branch release notes.Tom Lane2008-10-30
|
* Install a more robust solution for the problem of infinite error-processingTom Lane2008-10-27
| | | | | | | | | | | | | recursion when we are unable to convert a localized error message to the client's encoding. We've been over this ground before, but as reported by Ibrar Ahmed, it still didn't work in the case of conversion failures for the conversion-failure message itself :-(. Fix by installing a "circuit breaker" that disables attempts to localize this message once we get into recursion trouble. Patch all supported branches, because it is in fact broken in all of them; though I had to add some missing translations to the older branches in order to expose the failure in the particular test case I was using.
* Fix COPY documentation to not imply that HEADER can be used outside CSV mode.Tom Lane2008-10-10
| | | | Per gripe from Bill Thoen.
* Update back-branch release notes.Tom Lane2008-09-19
|
* Fix pg_dump docs to acknowledge that you can use -Z with plain text output. ↵Tom Lane2008-08-26
| | | | Pointed out by Daniel Migowski.
* Mention that pg_dump does not dump ALTER DATABASE ... SET commands;Bruce Momjian2008-08-21
| | | | backpatch to 8.3.X. Also fix markup that had just one bullet.
* Cleanup reference to config.pl so it makes sense not only inMagnus Hagander2008-07-29
| | | | SGML source but in the actual web/pdf viewer...
* Document which versions of ActivePerl and ActiveTcl are requiredMagnus Hagander2008-07-29
| | | | | | | for building on MSVC, and that the free distribution is enough (no need for the enterprise version). Per gripe from Martin Zaun.
* Update link to Oleg and Teodor's GIN page.Tom Lane2008-07-22
| | | | (Extracted from fast-insert patch, since it ought to be back-patched)
* Properly document archive/restore command examples on Windows.Bruce Momjian2008-07-18
| | | | ITAGAKI Takahiro
* Added documentation for xmlagg function.Peter Eisentraut2008-07-07
|
* Update release notes for ALTER AGGREGATE fix.Tom Lane2008-06-08
|
* Update release notes for 8.3.3 et al.Tom Lane2008-06-07
|
* Fix missing "not", per Frank Millman (bug #4212).Alvaro Herrera2008-06-05
|
* Draft release notes for upcoming back-branch updates.Tom Lane2008-06-04
|
* Improve GRANT documentation to point out that UPDATE and DELETE typicallyTom Lane2008-05-28
| | | | | | require SELECT privilege as well, since you normally need to read existing column values within such commands. This behavior is according to spec, but we'd never documented it before. Per gripe from Volkan Yazici.
* Clarify description of typmod input function, per Jeff Davis.Tom Lane2008-05-27
|
* Fix contrib/xml2 makefile to not override CFLAGS, and in passing make itTom Lane2008-05-08
| | | | auto-configure properly for libxslt present or not.
* Add Simon Riggs' email address.Alvaro Herrera2008-05-07
|
* Replace developer FAQ with a reference to the wiki, which is whereMagnus Hagander2008-04-22
| | | | it now lives (per discussion). Leave the other FAQs alone for now.
* Fix typo, noted by Stefan Kaltenbrunner.Magnus Hagander2008-04-21
|
* Add link to major version release notes at the top of the minorMagnus Hagander2008-04-21
| | | | | | version ones, to make it clear to users just browsing the notes that there are a lot more changes available from whatever version they are at than what's in the minor version release notes.
* Remove -C from rsync call, because it omits directories named "core".Peter Eisentraut2008-04-03
|
* cvsweb lives on anoncvs.postgresql.org these days.Magnus Hagander2008-03-18
|
* Wiki page about cvs now lives in the main wiki, the oneMagnus Hagander2008-03-18
| | | | on developer.postgresql.org is going away.
* Fix duplicate word, per Guillaume Lelarge.Alvaro Herrera2008-03-14
|
* Update release notes for 8.3.1 and 8.2.7 releases.Tom Lane2008-03-13
|