summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Message improvementsPeter Eisentraut2007-11-152-5/+5
|
* Add to synopsis that timeout option also applies to stop modePeter Eisentraut2007-11-151-2/+2
|
* Make help synopsis consistentPeter Eisentraut2007-11-151-2/+2
|
* Make synopses of -t option consistentPeter Eisentraut2007-11-151-5/+5
|
* Document that /contrib/tsearch2 now contains a compatibility interface.Bruce Momjian2007-11-151-5/+7
|
* Adjust example to reduce confusion between a tsvector column andTom Lane2007-11-141-5/+5
| | | | an index, per Simon.
* Add a rank/(rank+1) normalization option to ts_rank(). While the usefulnessTom Lane2007-11-142-15/+32
| | | | | | of this seems a bit marginal, if it's useful enough to be shown in the manual then we probably ought to support doing it without double evaluation of the ts_rank function. Per my proposal earlier today.
* Fix incorrect calculation of elapsed_xlogs. Itagaki TakahiroTom Lane2007-11-141-2/+2
|
* Add an Accept parameter to "simple" dictionaries. The default of trueTom Lane2007-11-142-9/+67
| | | | | | | gives the old behavior; selecting false allows the dictionary to be used as a filter ahead of other dictionaries, because it will pass on rather than accept words that aren't in its stopword list. Jan Urbanski
* Mention that GSSAPI is preferred over Kerberos authentication becauseBruce Momjian2007-11-141-7/+7
| | | | GSSAPI is industry-standard.
* Add note about deprecating krb5 authentication in favour of GSSAPI,Magnus Hagander2007-11-141-1/+10
| | | | | per discussions (a long time ago). Documentation only, we keep full support in the code.
* Capitalize "Migration to Version".Bruce Momjian2007-11-141-100/+100
|
* Properly capitalize "Migrate To Version"; seems we always had thatBruce Momjian2007-11-141-100/+100
| | | | wrong.
* Markup cleanup.Bruce Momjian2007-11-142-5/+4
|
* Reference pgfoundry instead of gborg.Bruce Momjian2007-11-142-8/+4
|
* Remove reference to gborg, instead reference pgfoundry.Bruce Momjian2007-11-142-6/+4
|
* Update discussion of tsearch2 migration. I'm not entirely sure aboutTom Lane2007-11-141-72/+50
| | | | | the division of material between here and the tsearch2 contrib page, but at least it's not obviously unfinished any more.
* Move contrib docs to an appendix (next door to External Projects).Tom Lane2007-11-142-23/+71
| | | | | Change title to Additional Supplied Modules. Improve discussion of how to build and install 'em.
* Clean up some now-obsolete references to GBorg.Tom Lane2007-11-142-24/+3
|
* Add some quick documentation for tsearch2 compatibility module.Tom Lane2007-11-143-1/+204
|
* Update release notes to current CVS.Bruce Momjian2007-11-141-2/+50
|
* Clean up some stray references to tsearch2.Tom Lane2007-11-135-38/+41
|
* contrib/tsearch2 need not be special-cased any longer.Tom Lane2007-11-133-10/+3
|
* Resurrect the code for the rewrite(ARRAY[...]) aggregate function,Tom Lane2007-11-136-28/+253
| | | | and put it into contrib/tsearch2 compatibility module.
* Ooops, missed one file to remove.Tom Lane2007-11-131-1242/+0
|
* Update description of contrib/tsearch2.Tom Lane2007-11-131-5/+6
|
* Re-add contrib/tsearch2 to the set of buildable contrib modules.Tom Lane2007-11-131-1/+2
|
* Replace the now-incompatible-with-core contrib/tsearch2 module with aTom Lane2007-11-1385-24507/+1207
| | | | | | | | compatibility package. This supports importing dumps from past versions using tsearch2, and provides the old names and API for most functions that were changed. (rewrite(ARRAY[...]) is a glaring omission, though.) Pavel Stehule and Tom Lane
* Again properly fix Darwin strip.Bruce Momjian2007-11-131-2/+2
|
* Add link to Postgres-R glossary from our documentation (has helpfulBruce Momjian2007-11-131-2/+4
| | | | terms defined).
* Modify OS/X Darin test to actually work, (no $template)Bruce Momjian2007-11-131-2/+2
|
* Fix a few contrib regression test scripts that hadn't gotten the wordTom Lane2007-11-1312-30/+48
| | | | | | | about best practice for including the module creation scripts: to wit that you should suppress NOTICE messages. This avoids creating regression failures by adding or removing comment lines in the module scripts.
* Adjust expected file for new CVS version label.Bruce Momjian2007-11-131-8/+8
|
* Add CVS version labels to all install/uninstall scripts.Bruce Momjian2007-11-1366-2/+132
|
* Fix more script breakage.Tom Lane2007-11-131-15/+14
|
* Fix insufficient search-path paranoia in SQL function definitions.Tom Lane2007-11-132-9/+2
| | | | | | Remove setting of search_path in install/uninstall scripts, since unlike other contrib modules this one does not want to let you change the installation schema.
* Adjust script to be consistent (thanks Tom for the fix).Bruce Momjian2007-11-131-2/+0
|
* Undo damage from yesterday's script "cleanup".Tom Lane2007-11-131-22/+23
|
* I find that an out-of-the-box installation of OSSP uuid 1.6.0 installsTom Lane2007-11-134-5/+163
| | | | | | itself as libuuid, not libossp-uuid which was the only case expected by our build support. Install a configure test to determine which name to use (and to check that the library is present at all).
* No master server overhead for middleware replication.Bruce Momjian2007-11-121-2/+2
|
* Change replication chart title to "No waiting for multiple servers".Bruce Momjian2007-11-121-4/+4
|
* Trim trailing whitespace --- needed commit to update anoncvs.Bruce Momjian2007-11-121-26/+26
|
* Ensure that typmod decoration on a datatype name is validated in all cases,Tom Lane2007-11-1118-288/+341
| | | | | | | | | | | | | | even in code paths where we don't pay any subsequent attention to the typmod value. This seems needed in view of the fact that 8.3's generalized typmod support will accept a lot of bogus syntax, such as "timestamp(foo)" or "record(int, 42)" --- if we allow such things to pass without comment, users will get confused. Per a recent example from Greg Stark. To implement this in a way that's not very vulnerable to future bugs-of-omission, refactor the API of parse_type.c's TypeName lookup routines so that typmod validation is folded into the base lookup operation. Callers can still choose not to receive the encoded typmod, but we'll check the decoration anyway if it's present.
* Remove tabs from SGML files.Bruce Momjian2007-11-1113-92/+92
|
* Remove /contrib/dblink/doc directory, now in SGML.Bruce Momjian2007-11-115-896/+0
|
* Adjust pg_trgm expected output for new *.sql file.Bruce Momjian2007-11-111-2/+2
|
* Make /contrib install/uninstall script consistent:Bruce Momjian2007-11-1154-1037/+1068
| | | | | | | | | | | | remove transactions use create or replace function make formatting consistent set search patch on first line Add documentation on modifying *.sql to set the search patch, and mention that major upgrades should still run the installation scripts. Some of these issues were spotted by Tom today.
* Remove references to READMEs from /contrib Makefiles.Bruce Momjian2007-11-1029-62/+29
|
* Move most /contrib README files into SGML. Some still need conversionBruce Momjian2007-11-1060-5643/+9288
| | | | or will never be converted.
* Add pg_ctl -t/timeout parameter to control amount of time to wait forBruce Momjian2007-11-102-8/+36
| | | | start/shutdown.