summaryrefslogtreecommitdiff
path: root/doc/src
AgeCommit message (Collapse)Author
2005-12-08Add documentation about the inability of plpsql to use parameter namesBruce Momjian
that are the same as column names used in the function.
2005-12-07Fix incorrect SPI example, per Yoshihisa Nakano.Tom Lane
2005-12-07Improve lazy vacuum wording.Bruce Momjian
2005-12-07Clarify vacuum lazy can shrink a file under certain circumstances.Bruce Momjian
2005-12-06Update iconv wording, per Peter.Bruce Momjian
2005-12-06Highlight diff idea for iconv.Bruce Momjian
2005-12-06iconv uses UTF-8, not UTF8.Bruce Momjian
2005-12-06Document method of removing invalid UTF8 escape sequences from dumpBruce Momjian
file. Backpatch to 8.1.X. Paul Lindner
2005-12-06Since my name has a non-ascii-letter in it, it's often spelled wrong. InBruce Momjian
the latest release notes there is a latin1 character that shouldn't be there so I made a patch to fix that. This patch also fixes some old entries that uses o instead of ö (which is also wrong but not as bad as including a latin1 character in the sgml file). Dennis Bj?rklund
2005-12-03Allow to_char(interval) and to_char(time) to use AM/PM specifications.Bruce Momjian
Map them to a single day, so '30 hours' is 'AM'. Have to_char(interval) and to_char(time) use "HH", "HH12" as 12-hour intervals, rather than bypass and print the full interval hours. This is neeeded because to_char(time) is mapped to interval in this function. Intervals should use "HH24", and document suggestion. Allow "D" format specifiers for interval/time.
2005-12-02Fix obsolete description of -h option, per Andreas Schmidt.Tom Lane
2005-12-01Fix typo in PL/PgSQL documentation, per Chris KL.Neil Conway
2005-11-28Improve documentation for COALESCE and NULLIF. Add references for NVLBruce Momjian
and IFNULL. Backpatch to 8.1.X.
2005-11-18Update Japanese FAQ.Bruce Momjian
J.Kuwamura
2005-11-16Properly document return value of strpos().Bruce Momjian
2005-11-05Update FAQ for most recent release as 8.1.Bruce Momjian
2005-11-05Yet another supported-platforms update.Tom Lane
2005-11-04Editorial review for partitioning/constraint exclusion documentation.Tom Lane
2005-11-04Spellchecking run, final cleanupsPeter Eisentraut
2005-11-04Update release notes for 8.1.Bruce Momjian
2005-11-04Update supported-platforms list.Tom Lane
2005-11-04Avoid referring to a specific version of the SQL standard except whereTom Lane
necessary, and be careful to refer to the right version where it is useful to do so. This partially reverts an ill-considered search and replace from a few months ago.
2005-11-03Some minor improvements to the CE docs. Also fix a bit of SGML markupNeil Conway
elsewhere.
2005-11-02Add Tomoaki Sato to pgbench changes in release notes.Bruce Momjian
2005-11-01Add some documentation for constraint exclusion and basic partitioning.Neil Conway
From Simon Riggs; cleanup and editorialization by Neil Conway.
2005-11-01Make an editorial pass over the reference pages.Tom Lane
2005-10-31Update supported-platforms entry for Tru64.Tom Lane
2005-10-31Mention in the docs that temporary/non-temp tables can not shareBruce Momjian
referential integrity relationships.
2005-10-30Update supported-platforms list.Tom Lane
2005-10-30Fix psql ref typo.Bruce Momjian
Andreas Seltenreich
2005-10-28Update supported-platforms list.Tom Lane
2005-10-28Fix broken markup.Tom Lane
2005-10-28Remove mention that \x doesn't affect backslash commands.Bruce Momjian
2005-10-27Update:Bruce Momjian
< o Allow ALTER TABLE RENAME CONSTRAINT > o Add ALTER TABLE RENAME CONSTRAINT, update index name also
2005-10-27Add:Bruce Momjian
> o Have ALTER INDEX update the name of a constraint using that index > o Allow ALTER TABLE RENAME CONSTRAINT
2005-10-27Add mention that .pgpass localhost matches tcp and unix domain sockets.Bruce Momjian
2005-10-27Add mention of errfinish.Bruce Momjian
2005-10-27Disable expanded mode only for \d tablename, not for all backslashBruce Momjian
commands. Per complaint that \df+ is clearer in expanded mode.
2005-10-27Add items from Tom:Bruce Momjian
< o Add a GUC variable to allow output of interval values in ISO8601 < format 212a211,223 > o Add a GUC variable to allow output of interval values in ISO8601 > format > o Improve timestamptz subtraction to be DST-aware > > Currently, subtracting one date from another that crosses a > daylight savings time adjustment can return '1 day 1 hour', but > adding that back to the first date returns a time one hour in > the future. This is caused by the adjustment of '25 hours' to > '1 day 1 hour', and '1 day' is the same time the next day, even > if daylight savings adjustments are involved. > > o Fix interval display to support values exceeding 2^31 hours > o Add overflow checking to timestamp and interval arithmetic
2005-10-26Add info about using rsync to make base backups. Per report fromTom Lane
Jeff Frost, it may be necessary to ignore specific exit codes.
2005-10-26Adjust parser so that POSTQUEL-style implicit RTEs are stored withTom Lane
inFromCl true, meaning that they will list out as explicit RTEs if they are in a view or rule. Update comments about inFromCl to reflect the way it's now actually used. Per recent discussion.
2005-10-26Rename config section headings.Bruce Momjian
Simon Riggs
2005-10-25Add:Bruce Momjian
> > o Add auto-expanded mode so expanded output is used if the row > length is wider than the screen width. > > Consider using auto-expanded mode for backslash commands like \df+.
2005-10-25Convert explanation of interval change into something resembling grammaticalTom Lane
English, and fix the incorrect example.
2005-10-25Small grammar correction.Tom Lane
2005-10-25Update 24 hours/1 day distinction in release notes.Bruce Momjian
2005-10-25Update the URL for "The Hitch-Hiker's Guide to Evolutionary Computation".Bruce Momjian
Sergey E. Koposov
2005-10-24Add:Bruce Momjian
> * Allow user-defined functions retuning a domain value to enforce domain > constraints
2005-10-24More forcefully recommend MD5 over crypt authentication.Bruce Momjian
2005-10-24Fix incorrect wording about function failure time on unsafe ops - theseAndrew Dunstan
are now caught by the validator. And a small visit from the perl style police: check the return value from open().