summaryrefslogtreecommitdiff
path: root/doc/src
AgeCommit message (Collapse)Author
2005-05-30Update psql docs for recent octal-only string behavior.Bruce Momjian
2005-05-30Add missing <P>.Bruce Momjian
2005-05-29Add reference to libpq environment variables for client applications.Bruce Momjian
2005-05-28Remove:Bruce Momjian
< < * Add XML output to pg_dump and COPY < < We already allow XML to be stored in the database, and XPath queries < can be used on that data using /contrib/xml2. It also supports XSLT < transformations.
2005-05-27Update Farsi FAQ.Bruce Momjian
Mahmoud Taghizadeh
2005-05-27Add:Bruce Momjian
> * Consider sorting hash buckets so entries can be found using a binary > search, rather than a linear scan > * In hash indexes, consider storing the hash value with or instead > of the key itself
2005-05-27Add:Bruce Momjian
> * Add the features of packages > o Make private objects accessable only to objects in the same schema > o Allow current_schema.objname to access current schema objects > o Add session variables > o Allow nested schemas
2005-05-26Document that utility commands such as DROP FUNCTION allow argument namesTom Lane
and modes to be included when naming an existing function.
2005-05-26Back out SQLSTATE and SQLERRM support.Bruce Momjian
2005-05-26Add PL/pgSQL SQLSTATE and SQLERRM support which sets these values onBruce Momjian
error. Pavel Stehule
2005-05-25Editing for the new "Encryption Options" section of the manual.Neil Conway
2005-05-23Remove some verbiage describing how min() and max() are slow when appliedNeil Conway
to the entire table: as of current sources, they are no longer slow provided there is an index on the column.
2005-05-23Consistently do not include a terminating period in single-sentenceNeil Conway
function descriptions in func.sgml; other minor SGML tweaks.
2005-05-21INT4 is probably enough:Bruce Momjian
< * Allow INET + INT4/INT8 to increment the host part of the address, or > * Allow INET + INT4 to increment the host part of the address, or
2005-05-21Mention overflow:Bruce Momjian
< throw an error > throw an error on overflow
2005-05-21Add:Bruce Momjian
> * Allow INET + INT4/INT8 to increment the host part of the address, or > throw an error
2005-05-20Remove 2-phase description, because it isn't accurate anymore:Bruce Momjian
< < This will involve adding a way to respond to commit failure by either < taking the server into offline/readonly mode or notifying the < administrator
2005-05-20Update Japanese FAQ.Bruce Momjian
Jun Kuwamura
2005-05-20Add support for wal_fsync_writethrough for Darwin, and restructure theBruce Momjian
code to better handle writethrough. Chris Campbell
2005-05-20Fix typo in ECPG docs, per Andreas Seltenreich.Neil Conway
2005-05-20Add some links to the CREATE FUNCTION reference page when describingNeil Conway
function definition for particular PLs. Original patch from David Fetter, editorializing by Neil Conway.
2005-05-20Make the CREATE RULE syntax description in rules.sgml more consistentNeil Conway
with the syntax description in the CREATE RULE reference page. From Kris Jurka.
2005-05-20Implement md5(bytea), update regression tests and documentation. PatchNeil Conway
from Abhijit Menon-Sen, minor editorialization from Neil Conway. Also, improve md5(text) to allocate a constant-sized buffer on the stack rather than via palloc. Catalog version bumped.
2005-05-17Extend the pg_locks system view so that it can fully display all lockTom Lane
types, as per recent discussion.
2005-05-17Update:Bruce Momjian
< * All ability to monitor the use of temporary sort files > * Add ability to monitor the use of temporary sort files
2005-05-17Convert Chinese FAQ to valid XHTML, finally.Bruce Momjian
2005-05-17Fix Chinese markup some more.Bruce Momjian
2005-05-17GiST improvements:Neil Conway
- make sure we always invoke user-supplied GiST methods in a short-lived memory context. This means the backend isn't exposed to any memory leaks that be in those methods (in fact, it is probably a net loss for most GiST methods to bother manually freeing memory now). This also means we can do away with a lot of ugly manual memory management in the GiST code itself. - keep the current page of a GiST index scan pinned, rather than doing a ReadBuffer() for each tuple produced by the scan. Since ReadBuffer() is expensive, this is a perf. win - implement dead tuple killing for GiST indexes (which is easy to do, now that we keep a pin on the current scan page). Now all the builtin indexes implement dead tuple killing. - cleanup a lot of ugly code in GiST
2005-05-17Fix markup:Bruce Momjian
< * Add internationalized message strings > o Add internationalized message strings
2005-05-17Update italics.Bruce Momjian
2005-05-17Update italics on web site.Bruce Momjian
2005-05-16Update italics on web site.Bruce Momjian
2005-05-16Update Chinese FAQ to validate properly.Bruce Momjian
2005-05-16Update Chinese FAQ to xhtml.Bruce Momjian
2005-05-15Rename Rendezvous to Bonjour to match OS/X renaming.Bruce Momjian
2005-05-14Re-order items, add mention of how to propose working on a TODO item.Bruce Momjian
2005-05-13Add missing quote, per Dave Page.Tom Lane
2005-05-13Update createuser examples to match the current program behavior,Tom Lane
and add an example showing assignment of a password. Per suggestion from Jari Aalto (via Martin Pitt).
2005-05-13Fix broken markup.Tom Lane
2005-05-13Update chinese encoding specification.Bruce Momjian
2005-05-11Update FAQ URLs.Bruce Momjian
Robert Treat
2005-05-11Document where to download free Microsoft and Borland development tools.Bruce Momjian
2005-05-11Document that bcc compiles now need the -N flag, backpatch to 8.0.X.Bruce Momjian
2005-05-11Update Chinese FAQ, per Magnus.Bruce Momjian
2005-05-11Fix newly introduced spelling error.Neil Conway
2005-05-11Add mention that not all functions are listed.Bruce Momjian
Update Chinese FAQ for HTML.
2005-05-11Add Chinese FAQ.Bruce Momjian
laser@pgsqldb.com
2005-05-10Back out check for unreferenced files.Bruce Momjian
Heikki Linnakangas
2005-05-10Item removed from CVS:Bruce Momjian
< * -Check for unreferenced table files created by transactions that were > * Check for unreferenced table files created by transactions that were
2005-05-10Add:Bruce Momjian
> * Fix sgmltools so PDFs can be generated with bookmarks