summaryrefslogtreecommitdiff
path: root/doc/src
AgeCommit message (Collapse)Author
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
2003-08-17Update documentation to reflect the fact that ORDER BY, GROUP BY, etcTom Lane
are now driven by the default btree opclass, rather than assuming that particular operator names have the needed semantics.
2003-08-17Fix broken markup.Tom Lane
2003-08-17I almost forgot mark in docs "to_char(interval)" as deprecated function.Bruce Momjian
This useless routine will removed in 7.5. It's already discussed (see hackers list archive). Karel Zak
2003-08-17This patch makes two minor fixes to the docs: (1) fixes aBruce Momjian
spelling mistake in the PREPARE ref page (2) Makes some English more consistent, in the ref pages for some of the client apps (3) Adds a link to the libpq docs in the vacuumdb ref page. Neil Conway
2003-08-17There is a misstatement in the CLOSE reference page, now that weBruce Momjian
have cursors that might outlive their creating transactions. A patch is attached that fixes this (suggestions on better wording are welcome). Neil Conway
2003-08-17I just noticed that the sample pg_hba.conf in the docs doesn't containBruce Momjian
any use of CIDR masks - here's a patch that adds a couple of sample lines and associated comments. Andrew Dunstan
2003-08-17The attached patch adds some clarification to the documentation of theBruce Momjian
binary format read/created by COPY BINARY. It also mentions the contrib/binarycopy module. Lee Kindness.
2003-08-17Add mention of sort_mem in the restore docs.Bruce Momjian
2003-08-17Update for 7.3 tips URL.Bruce Momjian
2003-08-16Add mention that Kerberos 4 isn't recommended.Bruce Momjian
2003-08-14Minor copy-editing.Tom Lane
2003-08-14Fix longstanding thinko in SSL protocol documentation: the server'sTom Lane
initial response is 'S', not 'Y', when it is willing to do SSL.
2003-08-13libpq failed to cope with COPY FROM STDIN if the command was issuedTom Lane
via extended query protocol, because it sends Sync right after Execute without realizing that the command to be executed is COPY. There seems to be no reasonable way for it to realize that, either, so the best fix seems to be to make the backend ignore Sync during copy-in mode. Bit of a wart on the protocol, but little alternative. Also, libpq must send another Sync after terminating the COPY, if the command was issued via Execute.
2003-08-13Add PQexecPrepared() and PQsendQueryPrepared() functions, to allowTom Lane
libpq users to perform Bind/Execute of previously prepared statements. Per yesterday's discussion, this offers enough performance improvement to justify bending the 'no new features during beta' rule.
2003-08-10Make various links point to specific places instead of entire partsTom Lane
(doubtless these are hangovers from the old separate-books days).
2003-08-10Request verbose error message output in bug reports.Tom Lane
2003-08-09Update docs for 7.4 array features and polymorphic functions.Tom Lane
This is Joe Conway's patch of 7-Aug plus further editorializing of my own.
2003-08-07markup fixesBarry Lind
2003-08-07Noticed broken markup in ecpg.sgml. Attached patch fixes it. PleaseBruce Momjian
apply. Joe Conway
2003-08-06Applied doc patch for the jdbc docs submitted by Nic Ferrier for functionalityBarry Lind
he supplied a few months ago, but didn't get around to docing until now. And he also added some doc for calling stored functions in general from jdbc that was missing. Modified Files: sgml/jdbc.sgml