| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2003-09-09 | Fixed a few bugs that came up on pgsql-interfaces. | Michael Meskes | |
| 2003-09-08 | Fix a couple minor typos. | Tom Lane | |
| 2003-09-08 | Update 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-08 | Document a bunch of formerly-undocumented date/time operators, | Tom Lane | |
| including the SQL-spec OVERLAPS construct. | |||
| 2003-09-07 | Update URL. | Bruce Momjian | |
| 2003-09-07 | Update URL to be momjian.postgresql.org. | Bruce Momjian | |
| 2003-09-07 | Remove 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-05 | Allow IPv4-format entries in pg_hba.conf to match IPv6 connections | Tom Lane | |
| that have IPv4-embedded-in-IPv6 addresses. Per idea of Andreas Pflug. | |||
| 2003-09-05 | Add WIN32 URL. | Bruce Momjian | |
| 2003-09-05 | Add missing space. | Tom Lane | |
| 2003-09-05 | Update information about Linux's overcommit memory behavior. | Bruce Momjian | |
| Andrew Dunstan | |||
| 2003-09-03 | Add note that a for loop where the lower bound is greater than the upper | Peter Eisentraut | |
| bound is valid but does nothing. suggested by Richard Huxton <dev@archonet.com> | |||
| 2003-09-03 | Pass session_authorization to the client and make psql update its prompt | Peter Eisentraut | |
| accordingly. | |||
| 2003-09-03 | Update German FAQ. | Bruce Momjian | |
| Ian Barwick | |||
| 2003-09-01 | Do 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-01 | Clean up after pygresql removal: adjust/remove documentation and remove | Peter Eisentraut | |
| unneeded configure work. | |||
| 2003-09-01 | Add mention of OID wraparound. | Bruce Momjian | |
| 2003-08-31 | Add/edit index entries. | Peter Eisentraut | |
| 2003-08-31 | Set LC_ALL=C when running collateindex.pl to get predictable sort order. | Peter Eisentraut | |
| 2003-08-30 | Fix unixware template --- had spaces around equals. | Bruce Momjian | |
| 2003-08-28 | Make documentation of pg_restore's -N, -o, -r switches bear some | Tom Lane | |
| slight resemblance to their actual behavior. | |||
| 2003-08-27 | Add "override" for make variable JADEFLAGS, since upper directory passes | Peter Eisentraut | |
| this variable on the command line. | |||
| 2003-08-27 | Major cleanup of SPI chapter | Peter Eisentraut | |
| 2003-08-27 | Update URL for 7.3 changes: | Bruce Momjian | |
| http://developer.postgresql.org/~momjian/upgrade_tips_7.3 | |||
| 2003-08-25 | Add 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-24 | Change warnings for non-existing or pre-existing cursors to errors. | Peter Eisentraut | |
| 2003-08-24 | Add macros for error result fields to libpq. | Peter Eisentraut | |
| 2003-08-19 | Updates for array documentation, from Joe Conway. | Tom Lane | |
| 2003-08-17 | Somebody forgot to include any actual documentation for ADD_MISSING_FROM. | Tom Lane | |
| 2003-08-17 | Update documentation to reflect the fact that ORDER BY, GROUP BY, etc | Tom Lane | |
| are now driven by the default btree opclass, rather than assuming that particular operator names have the needed semantics. | |||
| 2003-08-17 | Fix broken markup. | Tom Lane | |
| 2003-08-17 | I 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-17 | This patch makes two minor fixes to the docs: (1) fixes a | Bruce 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-17 | There is a misstatement in the CLOSE reference page, now that we | Bruce 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-17 | I just noticed that the sample pg_hba.conf in the docs doesn't contain | Bruce Momjian | |
| any use of CIDR masks - here's a patch that adds a couple of sample lines and associated comments. Andrew Dunstan | |||
| 2003-08-17 | The attached patch adds some clarification to the documentation of the | Bruce Momjian | |
| binary format read/created by COPY BINARY. It also mentions the contrib/binarycopy module. Lee Kindness. | |||
| 2003-08-17 | Add mention of sort_mem in the restore docs. | Bruce Momjian | |
| 2003-08-17 | Update for 7.3 tips URL. | Bruce Momjian | |
| 2003-08-16 | Add mention that Kerberos 4 isn't recommended. | Bruce Momjian | |
| 2003-08-14 | Minor copy-editing. | Tom Lane | |
| 2003-08-14 | Fix longstanding thinko in SSL protocol documentation: the server's | Tom Lane | |
| initial response is 'S', not 'Y', when it is willing to do SSL. | |||
| 2003-08-13 | libpq failed to cope with COPY FROM STDIN if the command was issued | Tom 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-13 | Add PQexecPrepared() and PQsendQueryPrepared() functions, to allow | Tom 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-10 | Make various links point to specific places instead of entire parts | Tom Lane | |
| (doubtless these are hangovers from the old separate-books days). | |||
| 2003-08-10 | Request verbose error message output in bug reports. | Tom Lane | |
| 2003-08-09 | Update 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-07 | markup fixes | Barry Lind | |
| 2003-08-07 | Noticed broken markup in ecpg.sgml. Attached patch fixes it. Please | Bruce Momjian | |
| apply. Joe Conway | |||
| 2003-08-06 | Applied doc patch for the jdbc docs submitted by Nic Ferrier for functionality | Barry 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 | |||
