Bruce Momjian
5f6f72b05d
More release note changes, including a lower level of subsections.
2009-03-30 22:01:15 +00:00
Bruce Momjian
3eedb9a17f
More release note adjustments, reordering.
2009-03-30 20:32:49 +00:00
Bruce Momjian
e604c8b51e
More release note wording improvements; section order adjustments.
2009-03-30 19:59:19 +00:00
Bruce Momjian
aa0a885e59
Reorder release note sections.
2009-03-30 18:34:56 +00:00
Alvaro Herrera
3fe3b81183
Update URL to Python bug tracker. Backpatch to 8.3; doesn't seem worthy of
...
further backpatch.
2009-03-30 16:15:43 +00:00
Bruce Momjian
a576994e72
More release note markup.
2009-03-29 19:13:46 +00:00
Bruce Momjian
2193b21a0f
More release note markup.
2009-03-29 03:58:37 +00:00
Bruce Momjian
087fa888a6
Add SGML markup for commands/literal/application/etc in release notes;
...
still more work to do.
2009-03-29 03:01:56 +00:00
Bruce Momjian
07c3563fe6
Consistent 8.4 release note naming for Itagaki Takahiro
2009-03-28 22:05:22 +00:00
Bruce Momjian
038777081a
Update release notes to say citext is multi-byte aware, per suggestion
...
from patch author:
Add /contrib/citext as a case-insensitive, multibyte-capable
text data type (David Wheeler)
2009-03-28 14:15:15 +00:00
Bruce Momjian
8fbef1090b
Better document that SET ROLE does not uset ALTER ROLE SET settings;
...
suggested wording from Josh Berkus.
2009-03-28 03:26:02 +00:00
Bruce Momjian
3ab95c2ab0
Better document PQinitSSL(0) behavior in regards to libcrypto.
2009-03-28 01:36:11 +00:00
Tom Lane
2938f8c4ea
Add documentation of the fact that dtrace probes evaluate their parameters
...
even when not active. Explain how to prevent that with an ENABLED() check.
2009-03-28 00:10:23 +00:00
Bruce Momjian
3c2ce020b7
Document in release notes that NOT IN is only for NOT EXIST clauses.
...
Andrew Gierth
2009-03-27 22:39:42 +00:00
Magnus Hagander
665aa5e540
Fix markup, per Devrim
2009-03-27 19:17:11 +00:00
Magnus Hagander
2e427ec05a
Clearify new SSL certificate verification in libpq
2009-03-27 12:01:57 +00:00
Magnus Hagander
cc42c14e36
Fix release notes about pg_hba changes
2009-03-27 11:58:21 +00:00
Bruce Momjian
be99a030a4
Updated release wording, per Greg Stark:
...
Previously EXPLAIN VERBOSE had output an internal
representation of the
2009-03-27 02:25:04 +00:00
Bruce Momjian
990fe113bd
Second batch of release note fixes by Guillaume Smet
2009-03-27 01:44:30 +00:00
Bruce Momjian
03f625d4d5
Mark Greg as the instigator of the statistics target increase:
...
Increase the default value of default_statistics_target from 10 to 100
(Greg Sabino Mullane, Tom)
2009-03-27 01:26:36 +00:00
Bruce Momjian
250bc515e4
First round of release note changes from Guillaume Smet.
2009-03-27 00:45:40 +00:00
Bruce Momjian
936815e9ab
Fix release note attribution:
...
Support the IS0 8601 time interval syntax (Tom, Kevin
Grittner)
per Ron Mayer
2009-03-27 00:11:34 +00:00
Bruce Momjian
e106b0a70e
Improved release notes interval wording:
...
Made interval seconds rounding more consistent across output
formats (Ron Mayer)
Ron Mayer
2009-03-27 00:08:14 +00:00
Bruce Momjian
4c8f90f6b9
Remove duplicate interval (fractional seconds) items; Ron Mayer
2009-03-27 00:06:14 +00:00
Bruce Momjian
0f84033a68
Document that Datestyle no longer controls interval output, per
...
suggestion from Ron Mayer
2009-03-27 00:01:47 +00:00
Tom Lane
845693f70f
Fix a couple of places that still claimed LC_COLLATE and LC_CTYPE can't
...
be changed after initdb.
2009-03-26 20:55:49 +00:00
Bruce Momjian
ee4c187f64
Correction: ansi-join ->anti-join.
2009-03-26 12:38:03 +00:00
Tom Lane
04c779d3f4
Fix markup so that 'make HISTORY' works. A couple very minor
...
editorial improvements.
2009-03-26 03:46:14 +00:00
Bruce Momjian
0f1ac2d04c
Reorder 8.4 release note sections.
2009-03-26 02:48:53 +00:00
Bruce Momjian
cb25bf7047
Re-add release notes for release 8.3.7.
2009-03-26 02:40:37 +00:00
Bruce Momjian
32e7174dbb
Adjust AS OF release notes markup.
2009-03-26 01:48:27 +00:00
Bruce Momjian
54a7363af4
Mention release note items current as of 2009-03-16.
2009-03-26 01:31:15 +00:00
Bruce Momjian
4b4a831f18
First version of 8.4 release notes; markup/cleanup/reorganization still
...
required.
2009-03-26 01:19:07 +00:00
Tom Lane
9151e1bb06
Add btree_gin contrib module.
...
Teodor Sigaev and Oleg Bartunov
2009-03-25 23:20:01 +00:00
Tom Lane
87b8db3774
Adjust the APIs for GIN opclass support functions to allow the extractQuery()
...
method to pass extra data to the consistent() and comparePartial() methods.
This is the core infrastructure needed to support the soon-to-appear
contrib/btree_gin module. The APIs are still upward compatible with the
definitions used in 8.3 and before, although *not* with the previous 8.4devel
function definitions.
catversion bump for changes in pg_proc entries (although these are just
cosmetic, since GIN doesn't actually look at the function signature before
calling it...)
Teodor Sigaev and Oleg Bartunov
2009-03-25 22:19:02 +00:00
Tom Lane
ff301d6e69
Implement "fastupdate" support for GIN indexes, in which we try to accumulate
...
multiple index entries in a holding area before adding them to the main index
structure. This helps because bulk insert is (usually) significantly faster
than retail insert for GIN.
This patch also removes GIN support for amgettuple-style index scans. The
API defined for amgettuple is difficult to support with fastupdate, and
the previously committed partial-match feature didn't really work with
it either. We might eventually figure a way to put back amgettuple
support, but it won't happen for 8.4.
catversion bumped because of change in GIN's pg_am entry, and because
the format of GIN indexes changed on-disk (there's a metapage now,
and possibly a pending list).
Teodor Sigaev
2009-03-24 20:17:18 +00:00
Andrew Dunstan
c9cab106f6
Remove munging of xml and xpath params to xpath(). The XML must now be a well formed XML document.
2009-03-23 21:00:39 +00:00
Bruce Momjian
5c617f4e56
Update constraint_exclusion docs because parameter is now 3-valued, not
...
just enable/disable.
2009-03-23 15:14:14 +00:00
Tom Lane
471913a6a5
More fixes for 8.4 DTrace probes. Remove useless BUFFER_HIT/BUFFER_MISS
...
probes --- the BUFFER_READ_DONE probe provides the same information and more
besides. Expand the LOCK_WAIT_START/DONE probe arguments so that there's
actually some chance of telling what is being waited for. Update and
clean up the documentation.
2009-03-23 01:52:38 +00:00
Bruce Momjian
c242e6b6d4
Clarify libpq 'sslverify' documentation wording.
2009-03-23 01:45:29 +00:00
Bruce Momjian
f04ee7043b
Clarify 'cert' authentication documention.
2009-03-22 21:55:07 +00:00
Tom Lane
5698f6b925
Remove the -d and -D options of pg_dump and pg_dumpall. The functionality
...
is still available, but you must now write the long equivalent --inserts
or --column-inserts. This change is made to eliminate confusion with the
use of -d to specify a database name in most other Postgres client programs.
Original patch by Greg Mullane, modified per subsequent discussion.
2009-03-22 16:44:26 +00:00
Tom Lane
0fd85d7879
Remove the datetime keywords ABSTIME and RELTIME, which we'd been treating as
...
noise words for the last twelve years, for compatibility with Berkeley-era
output formatting of the special INVALID values for those datatypes.
Considering that the datatypes themselves have been deprecated for awhile,
this is taking backwards compatibility a little far. Per gripe from Josh
Berkus.
2009-03-22 01:12:32 +00:00
Peter Eisentraut
249d936bed
Rename pg_restore -m to -j, and add documentation about what good numbers
...
are. per discussion on hackers
2009-03-20 09:21:09 +00:00
Tom Lane
52e6371e7d
Be more clear about when to use gist__int_ops vs. gist__intbig_ops.
...
Per suggestion from Ron Mayer.
2009-03-18 20:18:18 +00:00
Tom Lane
029348cff9
Add just-assigned CVE number to release notes for recent security issue.
2009-03-17 21:36:21 +00:00
Tom Lane
f3a72bd40b
Fix contrib/hstore to throw an error for keys or values that don't fit in its
...
data structure, rather than silently truncating them. Andrew Gierth
2009-03-15 22:05:17 +00:00
Tom Lane
2dd9af8c0c
Update back-branch release notes.
2009-03-12 22:35:48 +00:00
Bruce Momjian
b0c68c242c
Doc patch for the recently added probes.
...
Robert Lor
2009-03-10 00:08:28 +00:00
Peter Eisentraut
05a7db0582
Accept 'on' and 'off' as input for boolean data type, unifying the syntax
...
that the data type and GUC accepts.
ITAGAKI Takahiro
2009-03-09 14:34:35 +00:00