Simon Riggs
3e754a89ea
Clarify some behaviours of REASSIGN OWNED and DROP OWNED BY.
16 years ago
Peter Eisentraut
a5c317cf78
Fix the build and install rules for man pages with SQL section != 7
...
The previous coding failed in various scenarios possibly including vpath
builds and doing make install without preceding make all.
16 years ago
Bruce Momjian
399ea9e7a5
Change test -e to test -f in docs, for portability.
16 years ago
Bruce Momjian
0189c42f31
Add contraint exclusion section to contraint docs.
...
Takahiro Itagaki
16 years ago
Bruce Momjian
38672aaaa1
Add full names for release note item authors.
16 years ago
Bruce Momjian
570e01becc
Use test -e rather than test -f.
16 years ago
Bruce Momjian
8ae5160bf3
Improve 9.0 release notes by removing extra parentheses and linking to a
...
more appropriate place for exclusion constraints.
16 years ago
Bruce Momjian
d93e4d819c
Revert change that prevented ellipses from looking like ../.
16 years ago
Bruce Momjian
c2af244021
Clarify ellipses use in archive_command example, per Josh Kupershmidt.
16 years ago
Bruce Momjian
cba3498596
Document why 'cp -i </dev/null' is suggested for archive command.
16 years ago
Heikki Linnakangas
f185fc3c5e
Fix typos, spotted by Thom Brown.
16 years ago
Heikki Linnakangas
ec9ee9381f
Enhance standby documentation.
...
Original patch by Fujii Masao, with heavy editing and bitrot-fixing
after my other commit.
16 years ago
Heikki Linnakangas
259f60e9b6
Mention in the docs that if special keywords like "sameuser" and
...
"replication" are quoted in pg_hba.conf, they lose their special meaning.
16 years ago
Heikki Linnakangas
991bfe11d2
Enhance documentation of the build-in standby mode, explaining the retry
...
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.
16 years ago
Peter Eisentraut
29ccc32c30
Separate targets "make docs" and "make install-docs" for the documentation
...
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.
16 years ago
Peter Eisentraut
3f76f9613d
Add note that XML Schema validation is not supported
...
requested by Andrew Lardinois
16 years ago
Peter Eisentraut
1e24678349
Add some information about what it means for PL/Python to be untrusted.
...
Similar information already appears in the PL/Perl and PL/Tcl chapters.
16 years ago
Peter Eisentraut
51d2c9b0bb
Add some documentation about PL/Python limitations
...
suggested by Steve White (bug #5272 )
16 years ago
Alvaro Herrera
be8cebc717
Prevent ALTER USER f RESET ALL from removing the settings that were put there
...
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.
16 years ago
Bruce Momjian
5f9d2316d5
Typo fix from IRC breinbaas
16 years ago
Itagaki Takahiro
7e2411429c
Remove CRs for each line in pgbench.sgml.
16 years ago
Bruce Momjian
a9ae3c0a56
Add back other xlog() function author names.
16 years ago
Itagaki Takahiro
a887c486d5
Each worker thread will have its own log file in pgbench to avoid interleaved
...
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.
16 years ago
Bruce Momjian
1d34814ac2
Properly credit Simon for functions pg_last_xlog_replay_location, etc.
16 years ago
Bruce Momjian
260d843d70
Re-order createuser and vacuumedb documentation options, for
...
consistency.
Gabrielle (Roth)
16 years ago
Bruce Momjian
0885dd1517
Remove 9.0 release notes xref's to HISTORY.html can be built.
...
Document this restriction.
16 years ago
Bruce Momjian
6ad4249b5c
Add more 9.0 release note documentation links.
16 years ago
Bruce Momjian
4748faa50a
Add links to documentation sections in 9.0 release notes.
...
Also update tagging instructions, and add id tags to a few documentation
sections.
16 years ago
Bruce Momjian
4a12e98c46
In 9.0 release notes, move libpq/ecpg up into their own sections, like I
...
did with server-side languages.
16 years ago
Bruce Momjian
9e6c5f1e74
Move server-side languages up one section in the 9.0 release notes.
16 years ago
Bruce Momjian
128b1c5022
Create 9.0 release notes; keep 9.0-alpha release notes in place.
16 years ago
Bruce Momjian
4430907d95
Update sgml release note markup suggestions.
16 years ago
Simon Riggs
f42ddc4772
Clarify docs about database parameter in streaming replication primary_conninfo.
...
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.
16 years ago
Peter Eisentraut
a401226bd8
Prevent the injection of invalidly encoded strings by PL/Python into PostgreSQL
...
with a few strategically placed pg_verifymbstr calls.
16 years ago
Tom Lane
5f6285616d
Fix missing parentheses for current_query(), per bug #5378 .
...
Also make a couple other minor editorial improvements.
16 years ago
Heikki Linnakangas
c21ac0b58e
Add restartpoint_command option to recovery.conf. Fix bug in %r handling
...
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.
16 years ago
Peter Eisentraut
b2640888d9
Make typography consistent
16 years ago
Magnus Hagander
ad8f6fec3b
Typo fixes.
...
Fujii Masao
16 years ago
Peter Eisentraut
a95e51962d
Update broken and permanently moved links
16 years ago
Tom Lane
f248e11f70
Fix incorrect example in CREATE INDEX reference page, per Josh Kupershmidt.
...
Also fix and uncomment an old example of creating a GIST index, and make
a couple of other minor editorial adjustments.
16 years ago
Simon Riggs
0131088f18
Fix typo in streaming replication protocol docs.
16 years ago
Simon Riggs
ce701c1e73
Fix typo in math function docs, spotted by Heikki.
16 years ago
Simon Riggs
bd11a0f67f
Document that trig functions accept/return values in radians.
16 years ago
Peter Eisentraut
66cac8feab
Add some more structure and bits of information to PL/Python documentation
16 years ago
Bruce Momjian
a6c1cea2b7
Add libpq warning message if the .pgpass-retrieved password fails.
...
Add ERRCODE_INVALID_PASSWORD sqlstate error code.
16 years ago
Peter Eisentraut
8b2ae44dc8
Update shared memory configuration information for Linux
...
In particular, the assertion that shmall is sufficiently sized by default
is slowly becoming untrue.
16 years ago
Bruce Momjian
5473df9eb7
Document what user name email symbols are supported by tsearch.
16 years ago
Bruce Momjian
c24b2ef217
Re-add comma, oops.
16 years ago
Bruce Momjian
cb08f6b688
Remove unnecessary comma in documentation.
16 years ago
Tom Lane
8c9a120f6b
Preliminary release notes for releases 8.4.3, 8.3.10, 8.2.16, 8.1.20, 8.0.24,
...
7.4.28.
16 years ago