aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* Clarify variable naming: pq_initssllib -> pq_init_ssl_libBruce Momjian2009-03-28
|
* Update release notes to say citext is multi-byte aware, per suggestionBruce Momjian2009-03-28
| | | | | | | from patch author: Add /contrib/citext as a case-insensitive, multibyte-capable text data type (David Wheeler)
* Better document that SET ROLE does not uset ALTER ROLE SET settings;Bruce Momjian2009-03-28
| | | | suggested wording from Josh Berkus.
* Better document PQinitSSL(0) behavior in regards to libcrypto.Bruce Momjian2009-03-28
|
* Add documentation of the fact that dtrace probes evaluate their parametersTom Lane2009-03-28
| | | | even when not active. Explain how to prevent that with an ENABLED() check.
* Document in release notes that NOT IN is only for NOT EXIST clauses.Bruce Momjian2009-03-27
| | | | Andrew Gierth
* On Solaris, we should only force use of our own getopt(); it's okay to useTom Lane2009-03-27
| | | | | | | | | | the system's getopt_long(). The previous coding was the result of a sloppy discussion that failed to draw this distinction. The result was that PG programs don't handle options as users of that platform expect. Per gripe from Chuck McDevitt. Although this is a pre-existing bug, I'm not backpatching since I think we could do with a bit of beta testing before concluding this is really OK.
* Fix markup, per DevrimMagnus Hagander2009-03-27
|
* Add an errdetail explaining why we reject infinite dates and timestampsTom Lane2009-03-27
| | | | while converting to XML. Bernd Helmle
* Fix possible failures when a tuplestore switches from in-memory to on-diskTom Lane2009-03-27
| | | | | | | | | mode while callers hold pointers to in-memory tuples. I reported this for the case of nodeWindowAgg's primary scan tuple, but inspection of the code shows that all of the calls in nodeWindowAgg and nodeCtescan are at risk. For the moment, fix it with a rather brute-force approach of copying whenever one of the at-risk callers requests a tuple. Later we might think of some sort of reference-count approach to reduce tuple copying.
* Teach reindex_index() to clear pg_index.indcheckxmin when possible.Tom Lane2009-03-27
| | | | Greg Stark, slightly modified by me.
* Fix tab completion of ANALYZE VERBOSE <tab>. It was previously confusedHeikki Linnakangas2009-03-27
| | | | | | | with EXPLAIN ANALYZE VERBOSE. Greg Sabino Mullane, reformatted by myself. Backpatch to 8.1, where the bug was introduced.
* Clearify new SSL certificate verification in libpqMagnus Hagander2009-03-27
|
* Fix release notes about pg_hba changesMagnus Hagander2009-03-27
|
* Updated release wording, per Greg Stark:Bruce Momjian2009-03-27
| | | | | Previously EXPLAIN VERBOSE had output an internal representation of the
* Second batch of release note fixes by Guillaume SmetBruce Momjian2009-03-27
|
* Mark Greg as the instigator of the statistics target increase:Bruce Momjian2009-03-27
| | | | | Increase the default value of default_statistics_target from 10 to 100 (Greg Sabino Mullane, Tom)
* First round of release note changes from Guillaume Smet.Bruce Momjian2009-03-27
|
* Fix release note attribution:Bruce Momjian2009-03-27
| | | | | | | Support the IS0 8601 time interval syntax (Tom, Kevin Grittner) per Ron Mayer
* Improved release notes interval wording:Bruce Momjian2009-03-27
| | | | | | | Made interval seconds rounding more consistent across output formats (Ron Mayer) Ron Mayer
* Remove duplicate interval (fractional seconds) items; Ron MayerBruce Momjian2009-03-27
|
* Document that Datestyle no longer controls interval output, perBruce Momjian2009-03-27
| | | | suggestion from Ron Mayer
* Make pg_standby's maxretries option do what one would expect. Fujii MasaoTom Lane2009-03-26
|
* Gettext plural supportPeter Eisentraut2009-03-26
| | | | | | In the backend, I changed only a handful of exemplary or important-looking instances to make use of the plural support; there is probably more work there. For the rest of the source, this should cover all relevant cases.
* Fix a couple of places that still claimed LC_COLLATE and LC_CTYPE can'tTom Lane2009-03-26
| | | | be changed after initdb.
* Adjust phrasing of complaints about multi-byte COPY delimiter strings.Tom Lane2009-03-26
| | | | Per pgsql-hackers discussion of 2009-02-17.
* If we expect a hash join to be performed in multiple batches, suppressTom Lane2009-03-26
| | | | | | | | "physical tlist" optimization on the outer relation (ie, force a projection step to occur in its scan). This avoids storing useless column values when the outer relation's tuples are written to temporary batch files. Modified version of a patch by Michael Henderson and Ramon Lawrence.
* Correction: ansi-join ->anti-join.Bruce Momjian2009-03-26
|
* Fix markup so that 'make HISTORY' works. A couple very minorTom Lane2009-03-26
| | | | editorial improvements.
* Reorder 8.4 release note sections.Bruce Momjian2009-03-26
|
* Re-add release notes for release 8.3.7.Bruce Momjian2009-03-26
|
* Adjust AS OF release notes markup.Bruce Momjian2009-03-26
|
* Mention release note items current as of 2009-03-16.Bruce Momjian2009-03-26
|
* First version of 8.4 release notes; markup/cleanup/reorganization stillBruce Momjian2009-03-26
| | | | required.
* Add btree_gin contrib module.Tom Lane2009-03-25
| | | | Teodor Sigaev and Oleg Bartunov
* Adjust the APIs for GIN opclass support functions to allow the extractQuery()Tom Lane2009-03-25
| | | | | | | | | | | | | | 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
* Fix old thinko in pgp.h: the idea is to declare some named enum types,Tom Lane2009-03-25
| | | | | | | | not global variables of anonymous enum types. This didn't actually hurt much because most linkers will just merge the duplicated definitions ... but some will complain. Per bug #4731 from Ceriel Jacobs. Backpatch to 8.1 --- the declarations don't exist before that.
* Use double quotes instead of single quotes.Peter Eisentraut2009-03-25
|
* Complete list of valid fork names, and use double quotes.Peter Eisentraut2009-03-25
|
* Update line count for \? output (obtained from wc -l)Peter Eisentraut2009-03-25
|
* In the \? output, align the columns consistently.Peter Eisentraut2009-03-25
|
* Polish SQL/MED terminologyPeter Eisentraut2009-03-25
|
* No period if it's not a sentencePeter Eisentraut2009-03-25
|
* Install a search tree depth limit in GIN bulk-insert operations, to preventTom Lane2009-03-24
| | | | | | | | | | | | them from degrading badly when the input is sorted or nearly so. In this scenario the tree is unbalanced to the point of becoming a mere linked list, so insertions become O(N^2). The easiest and most safely back-patchable solution is to stop growing the tree sooner, ie limit the growth of N. We might later consider a rebalancing tree algorithm, but it's not clear that the benefit would be worth the cost and complexity. Per report from Sergey Burladyan and an earlier complaint from Heikki. Back-patch to 8.2; older versions didn't have GIN indexes.
* Fix stupid parenthesization mistake. Per bug #4728 from Bruce Toll.Tom Lane2009-03-24
|
* Implement "fastupdate" support for GIN indexes, in which we try to accumulateTom Lane2009-03-24
| | | | | | | | | | | | | | | | | | 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
* Fix my typoPeter Eisentraut2009-03-24
|
* Remove munging of xml and xpath params to xpath(). The XML must now be a ↵Andrew Dunstan2009-03-23
| | | | well formed XML document.
* Const-ify the parse table passed to fillRelOptions. The previous codingTom Lane2009-03-23
| | | | meant it had to be built on-the-fly at each entry to default_reloptions.
* Update constraint_exclusion docs because parameter is now 3-valued, notBruce Momjian2009-03-23
| | | | just enable/disable.