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
ae9b60322e
Remove mention of the -fast option from the Solaris FAQ.
...
Kenneth Marshall
2006-10-02 23:01:17 +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
Tom Lane
352a56ba68
Allow assignment to array elements not contiguous with those already
...
present; intervening positions are filled with nulls. This behavior
is required by SQL99 but was not implementable before 8.2 due to lack
of support for nulls in arrays. I have only made it work for the
one-dimensional case, which is all that SQL99 requires. It seems quite
complex to get it right in higher dimensions, and since we never allowed
extension at all in higher dimensions, I think that must count as a
future feature addition not a bug fix.
2006-09-29 21:22:21 +00:00
Tom Lane
673a573dcc
Remove duplicate (and now incorrect) documentation for row-wise IS [NOT]
...
NULL. Noted by Teodor.
2006-09-29 18:36:45 +00:00
Tom Lane
f213131f20
Fix IS NULL and IS NOT NULL tests on row-valued expressions to conform to
...
the SQL spec, viz IS NULL is true if all the row's fields are null, IS NOT
NULL is true if all the row's fields are not null. The former coding got
this right for a limited number of cases with IS NULL (ie, those where it
could disassemble a ROW constructor at parse time), but was entirely wrong
for IS NOT NULL. Per report from Teodor.
I desisted from changing the behavior for arrays, since on closer inspection
it's not clear that there's any support for that in the SQL spec. This
probably needs more consideration.
2006-09-28 20:51:43 +00:00
Bruce Momjian
d3aa4a8e33
Add URL for client_encoding being set by client:
...
> http://archives.postgresql.org/pgsql-hackers/2006-08/msg01696.php
2006-09-28 17:43:36 +00:00
Neil Conway
de6ca63d7f
GiST stands for "Generalized Search Tree", and therefore should not be
...
spelled with a capital "I".
2006-09-27 06:37:28 +00:00
Bruce Momjian
1d5a13b154
Update wording of inheritance major release item.
2006-09-26 12:31:48 +00:00
Bruce Momjian
8580985c2b
Split out inheritance major feature item in release notes.
2006-09-26 11:45:33 +00:00
Bruce Momjian
03a68a7cae
Done:
...
< o Add command to archive partially filled write-ahead logs? [pitr]
<
< Currently only full WAL files are archived. This means that the
< most recent transactions aren't available for recovery in case
< of a disk failure.
<
Reorder:
< o %Create dump tool for write-ahead logs for use in determining
< transaction id for point-in-time recovery
> o %Create dump tool for write-ahead logs for use in determining
> transaction id for point-in-time recovery
2006-09-26 11:18:29 +00:00
Tom Lane
0f8fc35a5a
Increase default value of effective_cache_size to 128MB, per discussion.
2006-09-25 22:12:24 +00:00
Neil Conway
6575920fa5
More incremental improvements for the release notes.
2006-09-25 15:35:28 +00:00
Tom Lane
1f4841a953
no-data-for-failed-tables is a pg_restore option, not a pg_dump option.
2006-09-25 15:31:50 +00:00
Bruce Momjian
0c858bd69e
Fix name, "Laurenz Albe" at request of author.
2006-09-25 15:04:37 +00:00
Neil Conway
2804442da6
Minor incremental improvements to the release notes.
2006-09-24 18:47:56 +00:00
PostgreSQL Daemon
bbed6678f3
Tag us Beta1
2006-09-23 01:33:37 +00:00
Tom Lane
d40d34863e
Fix pg_locks view to call advisory locks advisory locks, while preserving
...
backward compatibility for anyone using the old userlock code that's now
on pgfoundry --- locks from that code still show as 'userlock'.
2006-09-22 23:20:14 +00:00
Bruce Momjian
ae3f415f1d
Add to major release notes items, per Simon.
2006-09-22 18:09:40 +00:00
Tom Lane
ceefbbf718
Move incorrectly-located indexterm entry.
2006-09-22 16:35:55 +00:00
Tom Lane
e893e87530
Update timezone documentation to reflect current reality: instead of
...
giving tables of known timezone names, refer the user to the system views.
Joachim Wieland
2006-09-22 16:20:00 +00:00
Bruce Momjian
9adb2c49dd
Update release notes to only use HTML4 entities.
...
Add URL's to mention proper entity lists.
2006-09-22 15:41:12 +00:00
Tom Lane
29e53ca389
We're going to have to spell dotless i as plain i, because dotless i is
...
not in the character set supported by DocBook nor standard HTML. (Sorry
Volkan.) Also replace random character-set references by a pointer to
the actual standard.
2006-09-22 15:29:04 +00:00
Tom Lane
507447b585
Fix a lot of broken markup.
2006-09-22 15:22:04 +00:00
Bruce Momjian
285b5bdd6f
Update release notes to be current as of CVS today.
2006-09-22 03:04:23 +00:00
Bruce Momjian
f7fa844b6c
Update major release note items.
2006-09-22 01:52:27 +00:00
Bruce Momjian
bf31a62a6b
First try at a major features list for 8.2.
2006-09-22 01:39:33 +00:00
Teodor Sigaev
b0d64a090b
Add comments about STORAGE option for GIN
2006-09-21 15:09:38 +00:00
Teodor Sigaev
823ffd88e3
Fix table's caption
2006-09-21 15:03:53 +00:00
Michael Meskes
8ad3afee1a
Updated several parts in particular variable handling. This is work that was part of SoC.
2006-09-21 09:10:27 +00:00
Bruce Momjian
323ff93afb
Wording changes for continuous archving, per Simon.
2006-09-21 03:12:58 +00:00
Tom Lane
0efa510bf7
Add documentation for new in-core advisory lock functions. Merlin Moncure
2006-09-20 23:43:22 +00:00
Bruce Momjian
e56ccad7b0
Add URL for domain casting:
...
> http://archives.postgresql.org/pgsql-hackers/2006-09/msg01681.php
2006-09-20 23:01:55 +00:00
Bruce Momjian
0e54962890
Update release notes to use scaron, rather than numeric code for entity.
2006-09-20 22:48:47 +00:00
Tom Lane
c59487cfb3
Fix bogus markup.
2006-09-20 21:30:20 +00:00
Bruce Momjian
f2aad31424
Add AIX shared library support item to release notes.
2006-09-20 19:55:42 +00:00
Bruce Momjian
06b33f0ee8
Release note wording improvement.
...
Alvaro.
2006-09-20 11:54:23 +00:00