1. 25 Sep, 2017 1 commit
  2. 24 Sep, 2017 4 commits
    • Tom Lane's avatar
      Fix assorted infelicities in new SetWALSegSize() function. · 8485a25a
      Tom Lane authored
      * Failure to check for malloc failure (ok, pretty unlikely here, but
      that's not an excuse).
      
      * Leakage of open fd on read error, and of malloc'd buffer always.
      
      * Incorrect assumption that a short read would set errno to zero.
      
      * Failure to adhere to message style conventions (in particular,
      not reporting errno where relevant; using "couldn't open" rather than
      "could not open" is not really in line with project style either).
      
      * Missing newlines on some messages.
      
      Coverity spotted the leak problems; I noticed the rest while
      fixing the leaks.
      8485a25a
    • Peter Eisentraut's avatar
      Allow ICU to use SortSupport on Windows with UTF-8 · 6dda0998
      Peter Eisentraut authored
      There is no reason to ever prevent the use of SortSupport on Windows
      when ICU locales are used.  We previously avoided SortSupport on Windows
      with UTF-8 server encoding and a non C-locale due to restrictions in
      Windows' libc functionality.
      
      This is now considered to be a restriction in one platform's libc
      collation provider, and not a more general platform restriction.
      Reported-by: default avatarPeter Geoghegan <pg@bowt.ie>
      6dda0998
    • Peter Eisentraut's avatar
      doc: Expand user documentation on SCRAM · 9b31c72a
      Peter Eisentraut authored
      Explain more about how the different password authentication methods and
      the password_encryption settings relate to each other, give some
      upgrading advice, and set a better link from the release notes.
      Reviewed-by: default avatarJeff Janes <jeff.janes@gmail.com>
      9b31c72a
    • Peter Eisentraut's avatar
      Fix pg_basebackup test to original intent · 74ca8f9b
      Peter Eisentraut authored
      One test case was meant to check that pg_basebackup does not succeed
      when a slot is specified with -S but WAL streaming is not selected,
      which used to require specifying -X stream.  Since -X stream is the
      default in PostgreSQL 10, this test case no longer covers that meaning,
      but the pg_basebackup invocation happened to fail anyway for the
      unrelated reason that the specified replication slot does not exist.  To
      fix, move the test case to later in the file where the slot does exist,
      and add -X none to the invocation so that it covers the originally meant
      behavior.
      
      extracted from a patch by Michael Banck <michael.banck@credativ.de>
      74ca8f9b
  3. 23 Sep, 2017 7 commits
  4. 22 Sep, 2017 16 commits
  5. 21 Sep, 2017 4 commits
  6. 20 Sep, 2017 8 commits