Skip to content
Snippets Groups Projects
  1. Jun 03, 2007
    • Tom Lane's avatar
      Create a GUC parameter temp_tablespaces that allows selection of the · acfce502
      Tom Lane authored
      tablespace(s) in which to store temp tables and temporary files.  This is a
      list to allow spreading the load across multiple tablespaces (a random list
      element is chosen each time a temp object is to be created).  Temp files are
      not stored in per-database pgsql_tmp/ directories anymore, but per-tablespace
      directories.
      
      Jaime Casanova and Albert Cervera, with review by Bernd Helmle and Tom Lane.
      acfce502
  2. Jun 02, 2007
  3. Jun 01, 2007
  4. May 30, 2007
  5. May 29, 2007
  6. May 21, 2007
    • Peter Eisentraut's avatar
      XPath fixes: · 3963574d
      Peter Eisentraut authored
       - Function renamed to "xpath".
       - Function is now strict, per discussion.
       - Return empty array in case when XPath expression detects nothing
         (previously, NULL was returned in such case), per discussion.
       - (bugfix) Work with fragments with prologue: select xpath('/a',
         '<?xml version="1.0"?><a /><b />'); // now XML datum is always wrapped
         with dummy <x>...</x>, XML prologue simply goes away (if any).
       - Some cleanup.
      
      Nikolay Samokhvalov
      
      Some code cleanup and documentation work by myself.
      3963574d
    • Peter Eisentraut's avatar
      Fix spurious German index entry · 0c644d2c
      Peter Eisentraut authored
      0c644d2c
  7. May 18, 2007
  8. May 15, 2007
  9. May 14, 2007
  10. May 13, 2007
  11. May 12, 2007
    • Tom Lane's avatar
      Fix the problem that creating a user-defined type named _foo, followed by one · 9aa3c782
      Tom Lane authored
      named foo, would work but the other ordering would not.  If a user-specified
      type or table name collides with an existing auto-generated array name, just
      rename the array type out of the way by prepending more underscores.  This
      should not create any backward-compatibility issues, since the cases in which
      this will happen would have failed outright in prior releases.
      
      Also fix an oversight in the arrays-of-composites patch: ALTER TABLE RENAME
      renamed the table's rowtype but not its array type.
      9aa3c782
Loading