Skip to content
Snippets Groups Projects
  1. Jan 28, 2012
  2. Jan 27, 2012
  3. Jan 25, 2012
  4. Jan 20, 2012
  5. Jan 19, 2012
  6. Jan 15, 2012
  7. Jan 10, 2012
    • Tom Lane's avatar
      Fix one-byte buffer overrun in contrib/test_parser. · 89b3c6cc
      Tom Lane authored
      The original coding examined the next character before verifying that
      there *is* a next character.  In the worst case with the input buffer
      right up against the end of memory, this would result in a segfault.
      
      Problem spotted by Paul Guyot; this commit extends his patch to fix an
      additional case.  In addition, make the code a tad more readable by not
      overloading the usage of *tlen.
      89b3c6cc
  8. Jan 02, 2012
  9. Dec 27, 2011
  10. Dec 21, 2011
  11. Dec 09, 2011
  12. Dec 07, 2011
    • Magnus Hagander's avatar
      Remove spclocation field from pg_tablespace · 16d8e594
      Magnus Hagander authored
      Instead, add a function pg_tablespace_location(oid) used to return
      the same information, and do this by reading the symbolic link.
      
      Doing it this way makes it possible to relocate a tablespace when the
      database is down by simply changing the symbolic link.
      16d8e594
  13. Dec 05, 2011
  14. Nov 30, 2011
  15. Nov 29, 2011
  16. Nov 27, 2011
    • Peter Eisentraut's avatar
      Add pg_upgrade test suite · 08da2d28
      Peter Eisentraut authored
      It runs the regression tests, runs pg_upgrade on the populated
      database, and compares the before and after dumps.  While not actually
      a cross-version upgrade, this does detect omissions and bugs in the
      involved tools from time to time.  It's also possible to do a
      cross-version upgrade by manually supplying parameters.
      08da2d28
  17. Nov 26, 2011
  18. Nov 24, 2011
  19. Nov 21, 2011
  20. Nov 18, 2011
  21. Nov 17, 2011
  22. Nov 08, 2011
    • Robert Haas's avatar
      Fix hstore regression tests. · bb1afb52
      Robert Haas authored
      This was an oversight in commit b60653bc.
      
      Also, fix a typo spotted by Thom Brown.
      bb1afb52
    • Robert Haas's avatar
      Remove hstore's text => text operator. · b60653bc
      Robert Haas authored
      Since PostgreSQL 9.0, we've emitted a warning message when an operator
      named => is created, because the SQL standard now reserves that token
      for another use.  But we've also shipped such an operator with hstore.
      Use of the function hstore(text, text) has been recommended in
      preference to =>(text, text).  Per discussion, it's now time to take
      the next step and stop shipping the operator.  This will allow us to
      prohibit the use of => as an operator name in a future release if and
      when we wish to support the SQL standard use of this token.
      
      The release notes should mention this incompatibility.
      
      Patch by me, reviewed by David Wheeler, Dimitri Fontaine and Tom Lane.
      b60653bc
  23. Nov 07, 2011
    • Tom Lane's avatar
      Fix assorted bugs in contrib/unaccent's configuration file parsing. · ced3a93c
      Tom Lane authored
      Make it use t_isspace() to identify whitespace, rather than relying on
      sscanf which is known to get it wrong on some platform/locale combinations.
      Get rid of fixed-size buffers.  Make it actually continue to parse the file
      after ignoring a line with untranslatable characters, as was obviously
      intended.
      
      The first of these issues is per gripe from J Smith, though not exactly
      either of his proposed patches.
      ced3a93c
  24. Nov 04, 2011
  25. Nov 03, 2011
  26. Nov 01, 2011
Loading