summaryrefslogtreecommitdiff
path: root/doc/src
AgeCommit message (Collapse)Author
2010-03-18Prevent the injection of invalidly encoded strings by PL/Python into PostgreSQLPeter Eisentraut
with a few strategically placed pg_verifymbstr calls.
2010-03-18Fix missing parentheses for current_query(), per bug #5378.Tom Lane
Also make a couple other minor editorial improvements.
2010-03-18Add restartpoint_command option to recovery.conf. Fix bug in %r handlingHeikki Linnakangas
in recovery_end_command, it always came out as 0 because InRedo was cleared before recovery_end_command was executed. Also, always take ControlFileLock when reading checkpoint location for %r. The recovery_end_command bug and the missing locking was present in 8.4 as well, that part of this patch will be backported separately.
2010-03-17Make typography consistentPeter Eisentraut
2010-03-17Typo fixes.Magnus Hagander
Fujii Masao
2010-03-17Update broken and permanently moved linksPeter Eisentraut
2010-03-17Fix incorrect example in CREATE INDEX reference page, per Josh Kupershmidt.Tom Lane
Also fix and uncomment an old example of creating a GIST index, and make a couple of other minor editorial adjustments.
2010-03-17Fix typo in streaming replication protocol docs.Simon Riggs
2010-03-16Fix typo in math function docs, spotted by Heikki.Simon Riggs
2010-03-15Document that trig functions accept/return values in radians.Simon Riggs
2010-03-13Add some more structure and bits of information to PL/Python documentationPeter Eisentraut
2010-03-13Add libpq warning message if the .pgpass-retrieved password fails.Bruce Momjian
Add ERRCODE_INVALID_PASSWORD sqlstate error code.
2010-03-13Update shared memory configuration information for LinuxPeter Eisentraut
In particular, the assertion that shmall is sufficiently sized by default is slowly becoming untrue.
2010-03-13Document what user name email symbols are supported by tsearch.Bruce Momjian
2010-03-12Re-add comma, oops.Bruce Momjian
2010-03-12Remove unnecessary comma in documentation.Bruce Momjian
2010-03-10Preliminary release notes for releases 8.4.3, 8.3.10, 8.2.16, 8.1.20, 8.0.24,Tom Lane
7.4.28.
2010-03-08Add missing space in example.Magnus Hagander
Tim Landscheidt
2010-03-07Revert patch for --psqlrc=FILENAME in psql.Magnus Hagander
2010-03-06Add --psqlrc=FILENAME parameter to psql, to process an explicitly namedMagnus Hagander
file instead of ~/.psqlrc on startup.
2010-03-03Document that "Q" is ignored by to_date and to_timestamp. Add C commentBruce Momjian
about the behavior. Document that quotes in to_date, to_timestamp, to_number skip input characters.
2010-03-03Fix SGML markup.Bruce Momjian
2010-03-03Restructure CREATE FUNCTION "NOTES" section to be shorter; move itemsBruce Momjian
into proper sections, per suggestion from Tom.
2010-03-02Adjust max_standby_delay documentation to be clearer, and mention thatBruce Momjian
two adjacent long-running queries have much less than max_standby_delay before query cancel is possible.
2010-03-02Document the effect of max_standby_delay on increasing the delay of dataBruce Momjian
from master to slave, and discourage its use during slave/master keep-xid-alive connections.
2010-03-02Update keywords list for 9.0Peter Eisentraut
2010-02-28Update complex locale example in the documentation.Bruce Momjian
2010-02-28*** empty log message ***Bruce Momjian
2010-02-27Document ATAPI FLUSH CACHE EXT.Bruce Momjian
2010-02-27Document trace_recovery_messages() parameter as an enum, not string.Bruce Momjian
Fujii Masao
2010-02-27Document max_standby_delay=-1 option, now that it's allowed again.Heikki Linnakangas
2010-02-27Entity-ify a few new uses of literal <, >, and &.Tom Lane
2010-02-27Use <> for libpq #include in example programs, per suggestion from Josh Berkus.Bruce Momjian
2010-02-27Document ATAPI drive flush command, and mention SSD drives.Bruce Momjian
2010-02-26Document pg_restore --jobs as a performance enhancement.Bruce Momjian
2010-02-26Remove 'emphasis' markup inside literal; not allowed.Bruce Momjian
2010-02-25Document that after triggers that need to see changed rows should not beBruce Momjian
marked stable.
2010-02-25Document clearly the meaning of none/all for log_statements.Bruce Momjian
2010-02-25Clearly document that timestamp alone means timestamp without timezone,Bruce Momjian
per SQL standard, and mention 7.3 behavior at the end.
2010-02-25Add configuration parameter ssl_renegotiation_limit to controlMagnus Hagander
how often we do SSL session key renegotiation. Can be set to 0 to disable renegotiation completely, which is required if a broken SSL library is used (broken patches to CVE-2009-3555 a known cause) or when using a client library that can't do renegotiation.
2010-02-25Fix typos, per Richard HuxtonMagnus Hagander
2010-02-25Clarify that the connection string for primary_conninfo is in the sameHeikki Linnakangas
format as in PQconnectdb(). As pointed out by Thom Brown.
2010-02-25Fix typo.Heikki Linnakangas
2010-02-25Small streaming replication document improvements. Be more explicit thatHeikki Linnakangas
it's asynchronous.
2010-02-25Improve warning about creating nested named subroutines in plperl.Tom Lane
Per discussion.
2010-02-24Document that pg_restore -t can use -n for its schema qualification.Bruce Momjian
2010-02-24Revert removal of pre-7.4 documenation behavior mentions.Bruce Momjian
2010-02-24Remove stray semicolon, per report from strkAlvaro Herrera
2010-02-24Remove pre-7.4 documentaiton mentions, now that 8.0 is the oldestBruce Momjian
supported release.
2010-02-23Add an OR REPLACE option to CREATE LANGUAGE.Tom Lane
This operates in the same way as other CREATE OR REPLACE commands, ie, it replaces everything but the ownership and ACL lists of an existing entry, and requires the caller to have owner privileges for that entry. While modifying an existing language has some use in development scenarios, in typical usage all the "replaced" values come from pg_pltemplate so there will be no actual change in the language definition. The reason for adding this is mainly to allow programs to ensure that a language exists without triggering an error if it already does exist. This commit just adds and documents the new option. A followon patch will use it to clean up some unpleasant cases in pg_dump and pg_regress.