Skip to content
Snippets Groups Projects
  1. Jul 17, 2013
  2. Jul 12, 2013
  3. Jul 11, 2013
    • Bruce Momjian's avatar
      pg_upgrade: document possible pg_hba.conf options · 921a0b20
      Bruce Momjian authored
      Previously, pg_upgrade docs recommended using .pgpass if using MD5
      authentication to avoid being prompted for a password.  Turns out pg_ctl
      never prompts for a password, so MD5 requires .pgpass --- document that.
      Also recommend 'peer' for authentication too.
      Backpatch back to 9.1.
      921a0b20
  4. Jul 05, 2013
  5. Jul 03, 2013
  6. Jul 02, 2013
    • Alvaro Herrera's avatar
      Mention extra_float_digits in floating point docs · ca871e71
      Alvaro Herrera authored
      Make it easier for readers of the FP docs to find out about possibly
      truncated values.
      
      Per complaint from Tom Duffey in message
      F0E0F874-C86F-48D1-AA2A-0C5365BF5118@trillitech.com
      
      Author: Albe Laurenz
      Reviewed by: Abhijit Menon-Sen
      ca871e71
  7. Jun 27, 2013
    • Tom Lane's avatar
      Tweak wording in sequence-function docs to avoid PDF build failures. · 60d7edb8
      Tom Lane authored
      Adjust the wording in the first para of "Sequence Manipulation Functions"
      so that neither of the link phrases in it break across line boundaries,
      in either A4- or US-page-size PDF output.  This fixes a reported build
      failure for the 9.3beta2 A4 PDF docs, and future-proofs this particular
      para against causing similar problems in future.  (Perhaps somebody will
      fix this issue in the SGML/TeX documentation tool chain someday, but I'm
      not holding my breath.)
      
      Back-patch to all supported branches, since the same problem could rise up
      to bite us in future updates if anyone changes anything earlier than this
      in func.sgml.
      60d7edb8
    • Noah Misch's avatar
      Document effect of constant folding on CASE. · 1f3fbced
      Noah Misch authored
      Back-patch to all supported versions.
      
      Laurenz Albe
      1f3fbced
  8. Jun 20, 2013
  9. Jun 18, 2013
    • Simon Riggs's avatar
      Fix docs on lock level for ALTER TABLE VALIDATE · 20a562f9
      Simon Riggs authored
      ALTER TABLE .. VALIDATE CONSTRAINT previously
      gave incorrect details about lock levels and
      therefore incomplete reasons to use the option.
      
      Initial bug report and fix from Marko Tiikkaja
      Reworded by me to include comments by Kevin Grittner
      20a562f9
  10. Jun 12, 2013
  11. Jun 11, 2013
  12. Jun 09, 2013
  13. Jun 07, 2013
  14. Jun 06, 2013
  15. Jun 05, 2013
  16. May 29, 2013
  17. May 27, 2013
    • Stephen Frost's avatar
      Documentation fix for ALTER TYPE .. RENAME · 02230d3c
      Stephen Frost authored
      The documentation for ALTER TYPE .. RENAME claimed to support a
      RESTRICT/CASCADE option at the 'type' level, which wasn't implemented
      and doesn't make a whole lot of sense to begin with.  What is supported,
      and previously undocumented, is
      
      ALTER TYPE .. RENAME ATTRIBUTE .. RESTRICT/CASCADE.
      
      I've updated the documentation and back-patched this to 9.1 where it was
      first introduced.
      02230d3c
  18. May 11, 2013
  19. May 04, 2013
  20. Apr 22, 2013
  21. Apr 10, 2013
  22. Apr 05, 2013
  23. Apr 01, 2013
  24. Mar 29, 2013
    • Tom Lane's avatar
      Document encode(bytea, 'escape')'s behavior correctly. · d2b8d060
      Tom Lane authored
      I changed this in commit fd15dba5, but
      missed the fact that the SGML documentation of the function specified
      exactly what it did.  Well, one of the two places where it's specified
      documented that --- probably I looked at the other place and thought
      nothing needed to be done.  Sync the two places where encode() and
      decode() are described.
      d2b8d060
  25. Mar 23, 2013
  26. Mar 18, 2013
    • Tom Lane's avatar
      Improve documentation of EXTRACT(WEEK). · b8f45997
      Tom Lane authored
      The docs showed that early-January dates can be considered part of the
      previous year for week-counting purposes, but failed to say explicitly
      that late-December dates can also be considered part of the next year.
      Fix that, and add a cross-reference to the "isoyear" field.  Per bug
      #7967 from Pawel Kobylak.
      b8f45997
  27. Mar 03, 2013
  28. Feb 25, 2013
  29. Feb 24, 2013
  30. Feb 06, 2013
  31. Feb 04, 2013
    • Tom Lane's avatar
      Prevent execution of enum_recv() from SQL. · 1180844f
      Tom Lane authored
      This function was misdeclared to take cstring when it should take internal.
      This at least allows crashing the server, and in principle an attacker
      might be able to use the function to examine the contents of server memory.
      
      The correct fix is to adjust the system catalog contents (and fix the
      regression tests that should have caught this but failed to).  However,
      asking users to correct the catalog contents in existing installations
      is a pain, so as a band-aid fix for the back branches, install a check
      in enum_recv() to make it throw error if called with a cstring argument.
      We will later revert this in HEAD in favor of correcting the catalogs.
      
      Our thanks to Sumit Soni (via Secunia SVCRP) for reporting this issue.
      
      Security: CVE-2013-0255
      1180844f
    • Tom Lane's avatar
    • Simon Riggs's avatar
      Reset vacuum_defer_cleanup_age to PGC_SIGHUP. · b5f6c4db
      Simon Riggs authored
      Revert commit 84725aa5
      b5f6c4db
  32. Feb 02, 2013
  33. Jan 31, 2013
  34. Jan 28, 2013
    • Alvaro Herrera's avatar
      DROP OWNED: don't try to drop tablespaces/databases · 2d4e3387
      Alvaro Herrera authored
      My "fix" for bugs #7578 and #6116 on DROP OWNED at fe3b5eb0 not only
      misstated that it applied to REASSIGN OWNED (which it did not affect),
      but it also failed to fix the problems fully, because I didn't test the
      case of owned shared objects.  Thus I created a new bug, reported by
      Thomas Kellerer as #7748, which would cause DROP OWNED to fail with a
      not-for-user-consumption error message.  The code would attempt to drop
      the database, which not only fails to work because the underlying code
      does not support that, but is a pretty dangerous and undesirable thing
      to be doing as well.
      
      This patch fixes that bug by having DROP OWNED only attempt to process
      shared objects when grants on them are found, ignoring ownership.
      
      Backpatch to 8.3, which is as far as the previous bug was backpatched.
      2d4e3387
  35. Jan 25, 2013
Loading