Bruce Momjian
10d9bbaf01
Fixes for CREATE CONSTRAINT manual page.
...
Michael Paesold
2006-10-17 12:53:03 +00:00
Tom Lane
0b35b01e7a
Arrange for timezone names to be recognized case-insensitively; for
...
example SET TIME ZONE 'america/new_york' works now. This seems a good
idea on general user-friendliness grounds, and is part of the solution
to the timestamp-input parsing problems I noted recently.
2006-10-16 19:58:27 +00:00
Bruce Momjian
a2ebf81913
CREATE CONSTRAINT manual page wording improvements.
...
Michael Paesold
2006-10-16 19:33:12 +00:00
Bruce Momjian
52831f7911
Update to CREATE CONSTRAINT manual page.
...
Michael Glaesemann
2006-10-16 19:30:09 +00:00
Bruce Momjian
c2e7da1f62
I updated RPM related parts in FAQ_DEV against HEAD to be more current.
...
Devrim GUNDUZ
2006-10-16 19:03:43 +00:00
Bruce Momjian
389fad1e6b
Remove use of '<' and '>' in SGML, use '&' escapes.
...
Update find_gt_lt to allow grep parameters to be passed into it.
2006-10-16 17:28:03 +00:00
Bruce Momjian
87eed2e3e1
Update Japanese FAQ.
...
Jun Kuwamura
2006-10-15 03:10:20 +00:00
Bruce Momjian
fdbe9facdc
FAQ updates --- This is a small cosmetic patch that adds pt_BR IRC
...
channel to the lists of IRC channels, fixes a typo in the OID's
question, and corrects the PGCluster's project name.
Euler Taveira de Oliveira
2006-10-14 23:08:48 +00:00
Tom Lane
1314983fd3
Code review for --no-data-for-failed-tables patch. Instead of trashing
...
one of the program's core data structures, make use of the existing
ability to selectively exclude TOC items by ID. Slightly more code but
much less likely to create future maintenance problems.
2006-10-14 23:07:22 +00:00
Tom Lane
f58eac82ee
Code and docs review for ALTER TABLE INHERIT/NO INHERIT patch.
2006-10-13 21:43:19 +00:00
Bruce Momjian
d63ddfb872
Update Japanese FAQ.
...
Jun Kuwamura
2006-10-13 17:29:43 +00:00
Tom Lane
7de6cf2743
Fix typo in version number.
2006-10-13 15:24:56 +00:00
Bruce Momjian
efa0e8639f
Remove:
...
< o Issue a notice if CREATE TABLE ... ON COMMIT { DELETE ROWS |
< DROP } is issued outside a multi-statement transaction
2006-10-12 22:33:04 +00:00
Bruce Momjian
ab1cec93c5
Add url's for hints:
...
> http://archives.postgresql.org/pgsql-hackers/2006-10/msg00517.php
> http://archives.postgresql.org/pgsql-hackers/2006-10/msg00663.php
2006-10-12 21:40:15 +00:00
Bruce Momjian
5ee7c794c7
Add:
...
> o Issue a notice if CREATE TABLE ... ON COMMIT { DELETE ROWS |
> DROP } is issued outside a multi-statement transaction
2006-10-12 21:29:24 +00:00
Neil Conway
bfc6e9c970
Make some incremental improvements and fixes to the documentation on
...
Continuous Archiving. Plenty of editorial work remains...
2006-10-12 19:38:08 +00:00
Tom Lane
0c9983889a
Update release notes for SQL functions vs triggers fix.
2006-10-12 19:25:12 +00:00
Neil Conway
7055867a01
In the installation docs, add some links to the documentation on LDAP
...
to the discussion of the "--with-ldap" configure option. Patch from
Albe Laurenz.
2006-10-12 18:49:32 +00:00
Tom Lane
953c85646e
A bit of copy-editing on back-branch release notes.
2006-10-11 20:55:52 +00:00
Bruce Momjian
16795b9899
Update FAQ for latest release 8.1.5.
2006-10-10 00:28:32 +00:00
Tom Lane
24e9752863
Revise psql pattern-matching switches as per discussion. The rule is now
...
to process all inclusion switches then all exclusion switches, so that the
behavior is independent of switch ordering.
Use of -T does not cause non-table objects to be suppressed. And
the patterns are now interpreted the same way psql's \d commands do it,
rather than as pure regex commands; this allows for example -t schema.tab
to do what it should have been doing all along. Re-enable the --blobs
switch to do something useful, ie, add back blobs into a dump they were
otherwise suppressed from.
2006-10-09 23:36:59 +00:00
Tom Lane
77d2b1b625
Improve description of the pattern matching rules used by psql's \d
...
commands (and soon by pg_dump).
2006-10-09 23:31:29 +00:00
Bruce Momjian
d9dddd1100
Update release notes for releases 7.3.16, 7.4.14, 8.0.9, and 8.1.5.
2006-10-09 23:23:47 +00:00
Peter Eisentraut
842c00776b
Updated keyword table for 8.2
2006-10-08 20:51:52 +00:00
Bruce Momjian
92fb5edbc1
Update multi-line editing wording in release notes.
2006-10-08 19:18:32 +00:00
Bruce Momjian
978ddf65ed
In release notes, mention that multi-line history saving does not work
...
on Win32.
2006-10-08 18:15:52 +00:00
Bruce Momjian
aa198e5f14
Simplify <link> regex cleanup code.
2006-10-07 23:48:52 +00:00
Bruce Momjian
dc1e047baf
Allow HISTORY/history.html to be generated by removing <link> elements,
...
per suggestion from Peter. Without this, the main doc links prevent
those files from being built.
2006-10-07 23:28:04 +00:00
Bruce Momjian
9ddbbe95fe
In release notes, always use </link> rather than </>.
2006-10-07 22:06:25 +00:00
Peter Eisentraut
2b25e1169f
The -X option in pg_dump was supposed to be a workaround for the lack of
...
portable long options. But we have had portable long options for a long
time now, so this is obsolete. Now people have added options which *only*
work with -X but not as regular long option, so I'm putting a stop to this:
-X is deprecated; it still works, but it has been removed from the
documentation, and please don't add more of them.
2006-10-07 20:59:05 +00:00
Tom Lane
71a6f8b85b
On platforms that have getrlimit(RLIMIT_STACK), use it to ensure that
...
max_stack_depth is not set to an unsafe value.
This commit also provides configure-time checking for <sys/resource.h>,
and cleans up some perhaps-unportable code associated with use of that
include file and getrlimit().
2006-10-07 19:25:29 +00:00
Bruce Momjian
cc1d55b74b
Remove tabs added accidentally.
2006-10-07 03:32:28 +00:00
Neil Conway
9c53544950
Fix a typo.
2006-10-07 03:17:13 +00:00
Bruce Momjian
611b4c59c7
Add main documentation link tags to the release notes.
2006-10-07 02:18:34 +00:00
Bruce Momjian
b680a1d9ad
Update DB2X texinfo example code.
...
Andreas Seltenreich
2006-10-05 02:04:32 +00:00
Bruce Momjian
9e23cd612e
Improve readline psql prompt suggestion.
...
Andreas Seltenreich
2006-10-03 21:14:46 +00:00
Bruce Momjian
756d450313
Add experimental support for db2x texinfo
...
Andreas Seltenreich
2006-10-03 21:13:17 +00:00
Bruce Momjian
6e6125dc69
This patch fixes a small typo in information_schema.sgml.
...
Guillaume Lelarge
2006-10-03 01:03:53 +00:00
Bruce Momjian
e020a5a6a9
Add URL for strlcpy():
...
>
> http://archives.postgresql.org/pgsql-hackers/2006-09/msg02108.php
2006-10-03 00:03:54 +00:00
Bruce Momjian
725ab82975
Add:
...
> * Fix SSL retry to avoid useless repeated connection attempts and
> ensuing misleading error messages
2006-10-03 00:00:18 +00:00
Bruce Momjian
8ef72878b5
Update wording:
...
< * Use strlcpy() rather than StrNCpy() macro
> * Use strlcpy() rather than our StrNCpy() macro
2006-10-02 23:26:02 +00:00
Bruce Momjian
9b9e0e61a5
Add:
...
>
> * Use strlcpy() rather than StrNCpy() macro
2006-10-02 23:23:32 +00:00
Bruce Momjian
5d52ad9dc8
Update recovery documentation.
...
Simon Riggs
2006-10-02 22:33:02 +00:00
Bruce Momjian
9ec71d5d1b
Add URL for cached copy of paper as SGML comment.
2006-10-02 22:28:48 +00:00
Bruce Momjian
5257c7f829
Add release note item:
...
Drop privileges on startup so servers can be started from
an administrative account (Magnus)
2006-10-02 15:32:03 +00:00
Bruce Momjian
7de0a919a2
Move "Exotic Features" to the bottom of TODO.
2006-10-02 14:00:04 +00:00
Tom Lane
7ceec34a73
Improve documentation of configure's readline/libedit switches.
2006-10-01 23:47:16 +00:00
Tom Lane
e69c09c1e9
date_trunc also accepts 'quarter'. Noted by Yoshihisa Nakano.
2006-10-01 18:54:31 +00:00
Bruce Momjian
6bb9fc9fee
Add:
...
> * Allow more complex user/database default GUC settings
> Currently, ALTER USER and ALTER DATABASE support per-user and
> per-database defaults. Consider adding per-user-and-database
> defaults so things like search_path can be defaulted for a
> specific user connecting to a specific database.
>
>
2006-09-30 03:55:32 +00:00
Bruce Momjian
7229b8cb8a
Add MONEY URL:
...
> http://archives.postgresql.org/pgsql-hackers/2006-09/msg01107.php
2006-09-30 02:59:06 +00:00