1. 12 Jun, 2018 1 commit
  2. 11 Jun, 2018 13 commits
  3. 10 Jun, 2018 6 commits
  4. 09 Jun, 2018 1 commit
  5. 08 Jun, 2018 5 commits
  6. 07 Jun, 2018 3 commits
  7. 06 Jun, 2018 1 commit
    • Alvaro Herrera's avatar
      Fix function code in error report · eee381ef
      Alvaro Herrera authored
      This bug causes a lseek() failure to be reported as a "could not open"
      failure in the error message, muddling bug reports.  I introduced this
      copy-and-pasteo in commit 78e12201.
      
      Noticed while reviewing code for bug report #15221, from lily liang.  In
      version 10 the affected function is only used by multixact.c and
      commit_ts, and only in corner-case circumstances, neither of which are
      involved in the reported bug (a pg_subtrans failure.)
      
      Author: Álvaro Herrera
      eee381ef
  8. 04 Jun, 2018 3 commits
  9. 01 Jun, 2018 1 commit
  10. 31 May, 2018 2 commits
    • Noah Misch's avatar
      Reconcile nodes/*funcs.c with PostgreSQL 11 work. · ef310950
      Noah Misch authored
      This covers new fields in two outfuncs.c functions having no readfuncs.c
      counterpart.  Thus, this changes only debugging output.
      ef310950
    • Andrew Dunstan's avatar
      Fix compile-time warnings on all perl code · 0039049f
      Andrew Dunstan authored
      This patch does two things. First, it silences a number of compile-time
      warnings in the msvc tools files, mainly those due to the fact that in
      some cases we have more than one package per file. Second it supplies a
      dummy Perl library with just enough of the Windows API referred to in
      our code to let it run these checks cleanly, even on Unix machines where
      the code is never supposed to run. The dummy library should only be used
      for that purpose, as its README notes.
      0039049f
  11. 30 May, 2018 2 commits
  12. 29 May, 2018 1 commit
    • Peter Eisentraut's avatar
      Initialize new jsonb iterator to zero · 3c9cf069
      Peter Eisentraut authored
      Use palloc0() instead of palloc() to create a new JsonbIterator.
      Otherwise, the isScalar field is sometimes not initialized.  There is
      probably no impact in practice, but it's cleaner this way and it avoids
      future problems.
      3c9cf069
  13. 28 May, 2018 1 commit
    • Andrew Dunstan's avatar
      Return a value from Install.pm's lcopy function · 01deec5f
      Andrew Dunstan authored
      Commit 3a7cc727 was a little over eager about adding an explicit return
      to this function, whose value is checked in most call sites. This change
      reverses that and returns the expected value explicitly. It also adds a
      check to the one call site lacking one.
      01deec5f