Tom Lane
cfd8cf37d2
Stamp 9.1.2.
14 years ago
Tom Lane
92b9e439e7
Clarify documentation about SQL:2008 variant of LIMIT/OFFSET syntax.
...
The point that you need parentheses for non-constant expressions apparently
needs to be brought out a bit more clearly, per bug #6315 .
14 years ago
Tom Lane
0f90fb90c3
Update information about configuring SysV IPC parameters on NetBSD.
...
Per Emmanuel Kasper, sysctl works fine as of NetBSD 5.0.
14 years ago
Tom Lane
2cbe4f4c9e
Draft release notes for 9.1.2, 9.0.6, 8.4.10, 8.3.17, 8.2.23.
14 years ago
Tom Lane
8ab9df0db1
Remove erroneous claim about use of pg_locks.objid for advisory locks.
...
The correct information appears in the text, so just remove the statement
in the table, where it did not fit nicely anyway. (Curiously, the correct
info has been there much longer than the erroneous table entry.)
Resolves problem noted by Daniele Varrazzo.
In HEAD and 9.1, also do a bit of wordsmithing on other text on the page.
14 years ago
Robert Haas
91e8cb61a5
Correct documentation for trace_userlocks.
14 years ago
Bruce Momjian
0b6a1e8a16
Document that PQexec() can handle a NULL res pointer just fine.
...
Backpatch to 9.1.
Mark Hills
14 years ago
Peter Eisentraut
97c3d4853b
-DLINUX_OOM_ADJ=0 should be in CPPFLAGS, not CFLAGS
14 years ago
Peter Eisentraut
97d5b21c86
Fix archive_command example
...
The given archive_command example didn't use %p or %f, which wouldn't
really work in practice.
14 years ago
Magnus Hagander
864c38c59e
Document that multiple LDAP servers can be specified
14 years ago
Robert Haas
af0cc0f42d
Clarify that ORDER BY/FOR UPDATE can't malfunction at higher iso levels.
...
Kevin Grittner
14 years ago
Robert Haas
e489c000d9
Change "and and" to "and".
...
Report by Vik Reykja, patch by Kevin Grittner.
14 years ago
Tom Lane
8be47f79d3
Typo fixes.
...
expect -> except, noted by Andrew Dunstan. Also, "cannot" seems more
readable here than "can not", per David Wheeler.
14 years ago
Magnus Hagander
4911a27457
Fix typo
14 years ago
Robert Haas
13a867825a
Document that postmaster.opts is excluded from base backups
...
Fujii Masao
14 years ago
Bruce Momjian
a6c96534f0
Update documentation about ts_rank().
14 years ago
Tom Lane
eb0ae9700d
Fix typo in dummy_seclabel documentation.
...
dummy_label -> dummy_seclabel
Thom Brown
14 years ago
Tom Lane
dbd35a972f
Throw a useful error message if an extension script file is fed to psql.
...
We have seen one too many reports of people trying to use 9.1 extension
files in the old-fashioned way of sourcing them in psql. Not only does
that usually not work (due to failure to substitute for MODULE_PATHNAME
and/or @extschema@), but if it did work they'd get a collection of loose
objects not an extension. To prevent this, insert an \echo ... \quit
line that prints a suitable error message into each extension script file,
and teach commands/extension.c to ignore lines starting with \echo.
That should not only prevent any adverse consequences of loading a script
file the wrong way, but make it crystal clear to users that they need to
do it differently now.
Tom Lane, following an idea of Andrew Dunstan's. Back-patch into 9.1
... there is not going to be much value in this if we wait till 9.2.
14 years ago
Bruce Momjian
ecd9de637b
Modify up/home macro to match standard parameter list; fixes doc build.
14 years ago
Tom Lane
66a28adbc5
Improve documentation of psql's \q command.
...
The documentation neglected to explain its behavior in a script file
(it only ends execution of the script, not psql as a whole), and failed
to mention the long form \quit either.
14 years ago
Bruce Momjian
e0448c0c51
Add Up/Home link to the top of the HTML doc output.
...
Backpatch to 9.0.X and 9.1.X.
14 years ago
Bruce Momjian
35db9d0ab8
Document that not backing up postmaster.pid and postmaster.opts might
...
help prevent pg_ctl from getting confused.
Backpatch to 9.1.
14 years ago
Robert Haas
262d7f8bac
Improve documentation of how to fiddle with SCSI drives on FreeBSD.
...
Per suggestions from Achilleas Mantzios and Greg Smith.
14 years ago
Robert Haas
bc397244c8
Fix typo in docs for libpq keepalives_count option.
...
Shigehiro Honda
14 years ago
Robert Haas
1ae092ae14
Add missing space.
...
Dickson S. Guedes
14 years ago
Tom Lane
39be695772
Take sepgsql regression tests out of the regular regression test mechanism.
...
Back-port the new "test_sepgsql" script into 9.1 to provide a substitute
test mechanism.
14 years ago
Magnus Hagander
3f75cecfbb
Fix typo
14 years ago
Magnus Hagander
2b250fb077
Note that sslmode=require verifies the CA if root cert is present
...
This mode still exists for backwards compatibility, making
sslmode=require the same as sslmode=verify-ca when the file is present,
but not causing an error when it isn't.
Per bug 6189, reported by Srinivas Aji
14 years ago
Simon Riggs
8ab067da91
synchronous_commit is an enum not a boolean.
...
Jaime Casanova
14 years ago
Tom Lane
8da4007a4d
Stamp 9.1.1.
14 years ago
Tom Lane
7f70f35031
Update release notes for 9.1.1, 9.0.5, 8.4.9, 8.3.16, 8.2.22.
...
Man, we fixed a lotta bugs since April.
14 years ago
Heikki Linnakangas
7334135310
In the manual section on primary_conninfo, recommend using a role with
...
REPLICATION privileges, not SUPERUSER.
Fujii Masao
14 years ago
Tom Lane
1f43001424
Stamp 9.1.0.
15 years ago
Tom Lane
c7d60312fb
One last round of copy-editing for the 9.1 release notes.
...
Also set the documented release date to 2011-09-12.
15 years ago
Bruce Momjian
8cdd62068d
In pg_upgrade, disallow migration of 8.3 clusters using contrib/ltree
...
because its internal format was changed in 8.4.
Backpatch to 9.0 and 9.1.
Report by depesz, diagnosis by Tom.
15 years ago
Bruce Momjian
d5d94e1601
Revert documentation patch about NEW/OLD and triggers.
...
Backpatch to 9.0 and 9.1.
Patch from Josh Kupershmidt.
15 years ago
Bruce Momjian
e4d59f3536
Properly document the existance of OLD/NEW trigger pl/pgsql trigger
...
fields.
Backpatch to 9.0 and 9.1.
Report from Pavel Stehule, patch from Josh Kupershmidt
15 years ago
Bruce Momjian
6117526b5b
Fix spelling mistake in pgpass documentation change.
...
Per Peter.
15 years ago
Bruce Momjian
2b3e86d475
Add documentation suggestion about adding a comment to the top of
...
pgpass.
Backpatch to 9.1.
15 years ago
Bruce Momjian
3430ab5986
Fix plpgsql "PERFORM" markup.
...
Backpatch to 9.0 and 9.1.
15 years ago
Bruce Momjian
94bf47db8f
Document PERFORM limitation when using WITH queries.
...
Backpatch to 9.0 and 9.1.
Report from depstein@alliedtesting.com .
15 years ago
Tom Lane
a3850a5f75
Add an "incompatibility" entry to 9.1 release notes about CREATE EXTENSION.
...
We've now seen more than one gripe from somebody who didn't get the memo
about how to install contrib modules in 9.1. Try to make it a little more
prominent that you aren't supposed to call the scripts directly anymore.
15 years ago
Tom Lane
95a07c1ebe
Update type-conversion documentation for long-ago changes.
...
This example wasn't updated when we changed the behavior of bpcharlen()
in 8.0, nor when we changed the number of parameters taken by the bpchar()
cast function in 7.3. Per report from lsliang.
15 years ago
Bruce Momjian
f85adb65bf
Properly document semphore requirements by accounting for worker
...
processes.
Backpatch to 9.1 and 9.0.
Submitted by Anton Yuzhaninov, confirmed by Robert Haas
15 years ago
Bruce Momjian
0603ba3415
Add documentation link to strftime supported options.
15 years ago
Bruce Momjian
082befb516
Add mention that UTC really means UT1.
...
Backpatch to 9.1.
15 years ago
Bruce Momjian
2c62b5bb63
Document that contrib/pgtrgm only processes ASCII alphanumeric
...
characters.
Backpatch to 9.0 and 9.1.
15 years ago
Heikki Linnakangas
edf4edae57
The replication status values in pg_stat_replication was changed to
...
lowercase earlier, but documentation was not updated. Update the docs.
Fujii Masao
15 years ago
Peter Eisentraut
814a7f50c6
Spelling improvement
15 years ago
Robert Haas
eb11a37ed8
Adjust CREATE DOMAIN example for standard_conforming_strings=on.
...
Noted by Hitoshi Harada.
15 years ago