Bruce Momjian
eb838baf49
Document issues for SGML and XML:
...
>
> * Consider changing documentation from SGML to XML
>
> http://archives.postgresql.org/pgsql-docs/2006-12/msg00033.php
>
2006-12-15 03:01:20 +00:00
Bruce Momjian
c4dfc4137e
Document patch needed to get PDF and PS output in a reasonable amount of
...
time.
2006-12-15 02:44:28 +00:00
Bruce Momjian
9c92007029
Remove unneeded tab in file.
2006-12-15 02:19:21 +00:00
Bruce Momjian
6f84d53110
Run Jade twice when outputting Postscript and PDF so the index is
...
correct, add comments about other multiple runs in the Makefile.
Backpatch to 8.2.X.
2006-12-15 01:20:59 +00:00
Bruce Momjian
8283cd7663
Update entry:
...
< * Have EXPLAIN ANALYZE highlight poor optimizer estimates
> * Have EXPLAIN ANALYZE issue NOTICE messages when the estimated and
> actual row counts differ by a specified percentage
2006-12-12 22:31:19 +00:00
Bruce Momjian
0afabecbfd
Document that log_line_prefix %t does not print timezone on Win32.
2006-12-12 21:30:33 +00:00
Bruce Momjian
faf69ee4a3
Oops, removed:
...
< * Allow REINDEX CONCURRENTLY
2006-12-12 20:34:33 +00:00
Bruce Momjian
0f45c0890b
Add:
...
> * Allow REINDEX CONCURRENTLY
2006-12-12 20:33:15 +00:00
Bruce Momjian
876ef5d5c9
Remove blank lines in HTML FAQ.
2006-12-11 22:46:02 +00:00
Bruce Momjian
051b52c886
Add FAQ entry to mention using COALESCE() for concatenation of possible
...
NULLs.
2006-12-11 22:44:53 +00:00
Peter Eisentraut
314c7b642b
Make separate targets for building printable documentation in A4 and
...
US letter paper formats.
2006-12-10 20:46:03 +00:00
Peter Eisentraut
5f1f30d136
Reorganize XSLT stylesheet support. Put common things into a separate
...
file (instead of repeating), add XSL-FO stylesheet and appropriate make
rules.
2006-12-10 16:01:06 +00:00
Peter Eisentraut
0a265e487b
Add some information about increasing JadeTeX parameters.
2006-12-10 02:37:40 +00:00
Peter Eisentraut
465269b8ad
Drop indentation of verbatim environments in print output. This increased
...
the build time by what seemed like infinity.
2006-12-10 01:55:29 +00:00
Peter Eisentraut
c605441c79
Generalize Texinfo rules. Prevent them from overriding the PostScript
...
build rules.
2006-12-10 01:53:15 +00:00
Tom Lane
0cb91ccba9
Remove the logId/logSeg fields from pg_control, because they are not needed
...
in normal operation, and we can avoid rewriting pg_control at every log
segment switch if we don't insist that these values be valid. Reducing
the number of pg_control updates is a good idea for both performance and
reliability. It does make pg_resetxlog's life a bit harder, but that seems
a good tradeoff; and anyway the change to pg_resetxlog amounts to automating
something people formerly needed to do by hand, namely look at the existing
pg_xlog files to make sure the new WAL start point was past them.
In passing, change the wording of xlog.c's "database system was interrupted"
messages: describe the pg_control timestamp as "last known up at" rather than
implying it is the exact time of service interruption. With this change the
timestamp will generally be the time of the last checkpoint, which could be
many minutes before the failure; and we've already seen indications that
people tend to misinterpret the old wording.
initdb forced due to change in pg_control layout. Simon Riggs and Tom Lane
2006-12-08 19:50:53 +00:00
Tom Lane
98cacd1a0a
Fix broken markup.
2006-12-08 19:16:17 +00:00
Neil Conway
886a02d1cb
Add a txn_start column to pg_stat_activity. This makes it easier to
...
identify long-running transactions. Since we already need to record
the transaction-start time (e.g. for now()), we don't need any
additional system calls to report this information.
Catversion bumped, initdb required.
2006-12-06 18:06:48 +00:00
Bruce Momjian
a39e3958e9
Change psql \\ example to use single quotes, per TOm.
2006-12-06 15:47:22 +00:00
Bruce Momjian
a4242d7f87
Back out mention of port success from FAQs, per Tom, added by Simon.
2006-12-06 15:45:31 +00:00
Bruce Momjian
d7f316d28e
Clean up psql -c documentation that uses \\.
2006-12-06 15:40:11 +00:00
Bruce Momjian
a6f156b931
Make URL to docs use /current/.
2006-12-05 23:13:41 +00:00
Bruce Momjian
c08cfab407
Fix documentation example of using psql \x with a SELECT command, per
...
Simon Riggs. Backpatch to 8.2.X.
2006-12-05 17:40:55 +00:00
Bruce Momjian
5b2def8969
Update of port patches, HEAD patch only.
...
Simon Riggs
2006-12-05 14:47:34 +00:00
Bruce Momjian
37885a4d4b
Update most recent version from 8.2 to 8.2.0.
2006-12-02 12:15:50 +00:00
Peter Eisentraut
133d1e8e5b
Collect the bits of wisdom about dtrace installation in the installation
...
chapter rather than scattering them across several incomplete fragments.
2006-12-02 09:29:51 +00:00
Bruce Momjian
f8660e309d
Stamp 8.2, except configure.in.
2006-12-02 04:12:39 +00:00
Bruce Momjian
73500fd8b5
Update for release 8.2.
2006-12-02 04:12:11 +00:00
Peter Eisentraut
579c58761c
Wording refinement for external references in man pages.
2006-12-02 01:26:19 +00:00
Peter Eisentraut
b9dbb63e48
Don't ship spi_* man pages. (We don't do that anyway, but now it's automatic.)
2006-12-02 01:25:50 +00:00
Tom Lane
ceb1cc90e3
Put release date in release notes.
2006-12-02 00:46:46 +00:00
Tom Lane
606b10f959
Add some documentation for DTrace support. Simon Riggs
2006-12-02 00:42:54 +00:00
Peter Eisentraut
d92b939a0a
Make Options for Windows a second-level heading instead of first-level.
2006-12-02 00:34:52 +00:00
Tom Lane
08fa6a6851
Editorial improvements for GIN documentation.
2006-12-01 23:46:46 +00:00
Tom Lane
a88ec7b4bb
Some more supported-platforms updates: buildfarm hare is alive again,
...
and penguin reported in recently enough to justify the assumption that
we haven't broken ARM support in 8.2.
2006-12-01 21:17:51 +00:00
Tom Lane
c184470be3
Document the recently-understood hazard that a rollback can release row-level
...
locks that logically should not be released, because when a subtransaction
overwrites XMAX all knowledge of the previous lock state is lost. It seems
unlikely that we will be able to fix this before 8.3...
2006-12-01 20:49:53 +00:00
Tom Lane
b02414bb82
Editorial improvements to backup and warm-standby documentation.
2006-12-01 03:29:15 +00:00
Tom Lane
f378ccc261
Minor wording improvements.
2006-12-01 03:19:48 +00:00
Tom Lane
da6daee216
Adjust the description of locking to clarify that locks held by a
...
subtransaction are released if the subtransaction aborts --- in user-level
terminology, this means either rolling back to a savepoint or escaping from
a plpgsql exception block. Per recent suggestion from Simon.
2006-12-01 01:04:36 +00:00
Tom Lane
cd99debb3d
Update supported-platforms list based on recent buildfarm results.
2006-11-30 21:30:22 +00:00
Peter Eisentraut
f1e3e3238d
Fix typos
2006-11-30 20:50:44 +00:00
Tom Lane
7bbe35a540
Add an example showing how to cope with mixed-case names in pg_dump
...
switches.
2006-11-28 22:54:18 +00:00
Tom Lane
c15de02f61
Fix inheritance description to note that not-null constraints are
...
inherited, per Taiki Yamaguchi.
2006-11-28 01:09:01 +00:00
Tom Lane
81b0b06462
Make pg_restore usage examples more useful: illustrate restoring into
...
both the same database name and a different one.
2006-11-26 18:11:11 +00:00
Peter Eisentraut
50271fc9b3
Fix misspellings of GB.
2006-11-25 22:55:59 +00:00
Peter Eisentraut
818ac8479b
Correct misspellings of kB.
2006-11-25 22:44:48 +00:00
Neil Conway
b12add99c2
Cosmetic release note fix.
2006-11-25 07:03:57 +00:00
PostgreSQL Daemon
c11b5228cf
update for rc1
2006-11-25 03:34:13 +00:00
Bruce Momjian
f14d43d2d3
Document that to_char() "TM" is controlled by lc_messages.
2006-11-25 00:38:53 +00:00
Tom Lane
a7a3d0f0d9
Update release notes for RC1.
2006-11-24 23:31:55 +00:00