aboutsummaryrefslogtreecommitdiff
path: root/doc/src
Commit message (Collapse)AuthorAge
...
* Reword exclusion constriants to mention that the operator can returnBruce Momjian2010-04-06
| | | | false or null, per Tom.
* Clean up description of 9.0's incompatible changes in SIMILAR TO andTom Lane2010-04-05
| | | | SQL-style substring().
* Arrange to remove pg_default_acl entries completely if their ACL settingTom Lane2010-04-05
| | | | | | | | is changed to match the hard-wired default. This avoids accumulating useless catalog entries, and also provides a path for dropping the owning role without using DROP OWNED BY. Per yesterday's complaint from Jaime Casanova, the need to use DROP OWNED BY for that is less than obvious, so providing this alternative method might save some user frustration.
* Minor wording improvement.Tom Lane2010-04-03
|
* Clarify documentation of to_char EEEE patternPeter Eisentraut2010-04-03
|
* Remove unnecessary xref endterm attributes and title idsPeter Eisentraut2010-04-03
| | | | | | | | | The endterm attribute is mainly useful when the toolchain does not support automatic link target text generation for a particular situation. In the past, this was required by the man page tools for all reference page links, but that is no longer the case, and it now actually gets in the way of proper automatic link text generation. The only remaining use cases are currently xrefs to refsects.
* Allow for more room in the man page title, so thatPeter Eisentraut2010-04-03
| | | | "CREATE TEXT SEARCH CONFIGURATION" is not truncated.
* Clarify some behaviours of REASSIGN OWNED and DROP OWNED BY.Simon Riggs2010-04-02
|
* Fix the build and install rules for man pages with SQL section != 7Peter Eisentraut2010-04-02
| | | | | The previous coding failed in various scenarios possibly including vpath builds and doing make install without preceding make all.
* Change test -e to test -f in docs, for portability.Bruce Momjian2010-04-01
|
* Add contraint exclusion section to contraint docs.REL9_0_ALPHA5Bruce Momjian2010-04-01
| | | | Takahiro Itagaki
* Add full names for release note item authors.Bruce Momjian2010-04-01
|
* Use test -e rather than test -f.Bruce Momjian2010-04-01
|
* Improve 9.0 release notes by removing extra parentheses and linking to aBruce Momjian2010-04-01
| | | | more appropriate place for exclusion constraints.
* Revert change that prevented ellipses from looking like ../.Bruce Momjian2010-03-31
|
* Clarify ellipses use in archive_command example, per Josh Kupershmidt.Bruce Momjian2010-03-31
|
* Document why 'cp -i </dev/null' is suggested for archive command.Bruce Momjian2010-03-31
|
* Fix typos, spotted by Thom Brown.Heikki Linnakangas2010-03-31
|
* Enhance standby documentation.Heikki Linnakangas2010-03-31
| | | | | Original patch by Fujii Masao, with heavy editing and bitrot-fixing after my other commit.
* Mention in the docs that if special keywords like "sameuser" andHeikki Linnakangas2010-03-31
| | | | "replication" are quoted in pg_hba.conf, they lose their special meaning.
* Enhance documentation of the build-in standby mode, explaining the retryHeikki Linnakangas2010-03-31
| | | | | | | | | | | | | | loop in standby mode, trying to restore from archive, pg_xlog and streaming. Move sections around to make the high availability chapter more coherent: the most prominent part is now a "Log-Shipping Standby Servers" section that describes what a standby server is (like the old "Warm Standby Servers for High Availability" section), and how to set up a warm standby server, including streaming replication, using the built-in standby mode. The pg_standby method is desribed in another section called "Alternative method for log shipping", with the added caveat that it doesn't work with streaming replication.
* Separate targets "make docs" and "make install-docs" for the documentationPeter Eisentraut2010-03-30
| | | | | | | | It is no longer installed by default, but included in "make world"/"make install-world". Documentation updated accordingly. Also, fix vpathsearch function to work when calling make install-docs without previous make docs.
* Add note that XML Schema validation is not supportedPeter Eisentraut2010-03-29
| | | | requested by Andrew Lardinois
* Add some information about what it means for PL/Python to be untrusted.Peter Eisentraut2010-03-29
| | | | Similar information already appears in the PL/Perl and PL/Tcl chapters.
* Add some documentation about PL/Python limitationsPeter Eisentraut2010-03-29
| | | | suggested by Steve White (bug #5272)
* Prevent ALTER USER f RESET ALL from removing the settings that were put thereAlvaro Herrera2010-03-25
| | | | | | | | by a superuser -- "ALTER USER f RESET setting" already disallows removing such a setting. Apply the same treatment to ALTER DATABASE d RESET ALL when run by a database owner that's not superuser.
* Typo fix from IRC breinbaasBruce Momjian2010-03-23
|
* Remove CRs for each line in pgbench.sgml.Itagaki Takahiro2010-03-23
|
* Add back other xlog() function author names.Bruce Momjian2010-03-23
|
* Each worker thread will have its own log file in pgbench to avoid interleavedItagaki Takahiro2010-03-23
| | | | | | | writes. The first worker still uses "pgbench_log.<pid>" for the name, but additional workers use "pgbench_log.<pid>.<serial-number>" instead. Reported by Greg Smith.
* Properly credit Simon for functions pg_last_xlog_replay_location, etc.Bruce Momjian2010-03-22
|
* Re-order createuser and vacuumedb documentation options, forBruce Momjian2010-03-22
| | | | | | consistency. Gabrielle (Roth)
* Remove 9.0 release notes xref's to HISTORY.html can be built.Bruce Momjian2010-03-21
| | | | Document this restriction.
* Add more 9.0 release note documentation links.Bruce Momjian2010-03-21
|
* Add links to documentation sections in 9.0 release notes.Bruce Momjian2010-03-21
| | | | | Also update tagging instructions, and add id tags to a few documentation sections.
* In 9.0 release notes, move libpq/ecpg up into their own sections, like IBruce Momjian2010-03-20
| | | | did with server-side languages.
* Move server-side languages up one section in the 9.0 release notes.Bruce Momjian2010-03-20
|
* Create 9.0 release notes; keep 9.0-alpha release notes in place.Bruce Momjian2010-03-20
|
* Update sgml release note markup suggestions.Bruce Momjian2010-03-20
|
* Clarify docs about database parameter in streaming replication primary_conninfo.Simon Riggs2010-03-19
| | | | | | Docs were unclear on whether or not database=replication was required, nor did they mention the FATAL error this causes if database parameter is mentioned explicitly, whatever its value.
* Prevent the injection of invalidly encoded strings by PL/Python into PostgreSQLPeter Eisentraut2010-03-18
| | | | with a few strategically placed pg_verifymbstr calls.
* Fix missing parentheses for current_query(), per bug #5378.Tom Lane2010-03-18
| | | | Also make a couple other minor editorial improvements.
* Add restartpoint_command option to recovery.conf. Fix bug in %r handlingHeikki Linnakangas2010-03-18
| | | | | | | | | in recovery_end_command, it always came out as 0 because InRedo was cleared before recovery_end_command was executed. Also, always take ControlFileLock when reading checkpoint location for %r. The recovery_end_command bug and the missing locking was present in 8.4 as well, that part of this patch will be backported separately.
* Make typography consistentPeter Eisentraut2010-03-17
|
* Typo fixes.Magnus Hagander2010-03-17
| | | | Fujii Masao
* Update broken and permanently moved linksPeter Eisentraut2010-03-17
|
* Fix incorrect example in CREATE INDEX reference page, per Josh Kupershmidt.Tom Lane2010-03-17
| | | | | Also fix and uncomment an old example of creating a GIST index, and make a couple of other minor editorial adjustments.
* Fix typo in streaming replication protocol docs.Simon Riggs2010-03-17
|
* Fix typo in math function docs, spotted by Heikki.Simon Riggs2010-03-16
|
* Document that trig functions accept/return values in radians.Simon Riggs2010-03-15
|