summaryrefslogtreecommitdiff
path: root/doc/src
AgeCommit message (Collapse)Author
2003-09-15LISTEN doesn't issue a warning for redundant listens anymore. Also,Tom Lane
add some 'See Also' links.
2003-09-13Rename --without-spinlocks to --disable-spinlocks, per Peter.Bruce Momjian
2003-09-13When I sent in the sslmode patch I forgot to update theBruce Momjian
comments/examples in pg_hba.conf. This patch remedies that, adds a brief explanation of the connection types, and adds a missing period in the docs. Jon Jensen
2003-09-13Marginal hacks to make tables format more nicely.Tom Lane
2003-09-12Mop-up for error-message updates in documentation.Tom Lane
2003-09-12Update obsolete examples of error messages; various other minor editing.Tom Lane
2003-09-12Implement compiler #error if spinlock code not found, add configure flagBruce Momjian
to bypass the error, --without-spinlocks.
2003-09-12Remove WIN32_CONSOLE support, at the request of the author.Bruce Momjian
2003-09-12More cleanup of Diagnostics sections.Tom Lane
2003-09-11Small typo.Tom Lane
2003-09-11This patch fixes a few missed GUC variables that were still upper case,Bruce Momjian
makes a few more small improvements to runtime.sgml, and makes some SGML conventions more consistent. Neil Conway
2003-09-11Consistenly lowercase GUC variable names, in docs and error messages.Bruce Momjian
2003-09-11This patch makes a few minor improvements to the docs: make theBruce Momjian
<varname> conventions more consistent, and improve the ANALYZE ref page. Neil Conway
2003-09-11This patch makes a number of improvements to the runtime configBruce Momjian
documentation. Neil Conway
2003-09-11Mention that pg_type_is_visible is used for domains as well.Bruce Momjian
Christopher Kings-Lynne
2003-09-11seemed like a typo in one of the appendix tablesBruce Momjian
Robert Treat
2003-09-10This patch fixes a trivial typo in the CREATE FUNCTION ref page.Bruce Momjian
Neil Conway
2003-09-09Improve wording of increasing page size.Bruce Momjian
2003-09-09Remove a bunch of content-free Diagnostics sections, as per previousTom Lane
discussion. (Still have some work to do editing the remainder.)
2003-09-09Update max tasble size to 32TB.Bruce Momjian
2003-09-09Fixed a few bugs that came up on pgsql-interfaces.Michael Meskes
2003-09-08Fix a couple minor typos.Tom Lane
2003-09-08Update preface.Peter Eisentraut
Use question marks rather than brackets to delimit optional elements in Tcl synopses. Fix stylesheet misfeature leading to excessively long cross-reference text when linking to a different "part". Remove <body> attributes -- CSS stylesheets should handle that. Improve bibliography formatting. Add fast-forward links for more convenient navigation.
2003-09-08"statenebt" ?Tom Lane
2003-09-08Document a bunch of formerly-undocumented date/time operators,Tom Lane
including the SQL-spec OVERLAPS construct.
2003-09-07Update URL.Bruce Momjian
2003-09-07Update URL to be momjian.postgresql.org.Bruce Momjian
2003-09-07Remove geqo_random_seed parameter. Having geqo reset the global random()Tom Lane
sequence every time it's called is bogus --- it interferes with user control over the seed, and actually decreases randomness overall (because a seed based on time(NULL) is pretty predictable). If you really want a reproducible result from geqo, do 'set seed = 0' before planning a query.
2003-09-05Allow IPv4-format entries in pg_hba.conf to match IPv6 connectionsTom Lane
that have IPv4-embedded-in-IPv6 addresses. Per idea of Andreas Pflug.
2003-09-05Add WIN32 URL.Bruce Momjian
2003-09-05Add missing space.Tom Lane
2003-09-05Update information about Linux's overcommit memory behavior.Bruce Momjian
Andrew Dunstan
2003-09-03Add note that a for loop where the lower bound is greater than the upperPeter Eisentraut
bound is valid but does nothing. suggested by Richard Huxton <dev@archonet.com>
2003-09-03Pass session_authorization to the client and make psql update its promptPeter Eisentraut
accordingly.
2003-09-03Update German FAQ.Bruce Momjian
Ian Barwick
2003-09-01Do not pass server_encoding to the client.Peter Eisentraut
libpq, talking to an old server, should assume SQL_ASCII as the default client encoding, because that is what the server will actually use (not the server encoding).
2003-09-01Clean up after pygresql removal: adjust/remove documentation and removePeter Eisentraut
unneeded configure work.
2003-09-01Add mention of OID wraparound.Bruce Momjian
2003-08-31Add/edit index entries.Peter Eisentraut
2003-08-31Set LC_ALL=C when running collateindex.pl to get predictable sort order.Peter Eisentraut
2003-08-30Fix unixware template --- had spaces around equals.Bruce Momjian
2003-08-28Make documentation of pg_restore's -N, -o, -r switches bear someTom Lane
slight resemblance to their actual behavior.
2003-08-27Add "override" for make variable JADEFLAGS, since upper directory passesPeter Eisentraut
this variable on the command line.
2003-08-27Major cleanup of SPI chapterPeter Eisentraut
2003-08-27Update URL for 7.3 changes:Bruce Momjian
http://developer.postgresql.org/~momjian/upgrade_tips_7.3
2003-08-25Add the Brazilian time zone abbreviations BRT, BRST, FNT, FNST.Tom Lane
ACT and ACST were already present. AMT and AMST conflict with the existing entries for Armenia; no change there for the moment.
2003-08-24Change warnings for non-existing or pre-existing cursors to errors.Peter Eisentraut
2003-08-24Add macros for error result fields to libpq.Peter Eisentraut
2003-08-19Updates for array documentation, from Joe Conway.Tom Lane
2003-08-17Somebody forgot to include any actual documentation for ADD_MISSING_FROM.Tom Lane