1. 26 Mar, 2020 2 commits
    • Tom Lane's avatar
      Further fixes for ssl_passphrase_callback test module. · 958aa438
      Tom Lane authored
      The Makefile should set TAP_TESTS = 1, not implement the infrastructure
      for itself.  For one thing, it missed the appropriate "make clean"
      steps.  For another, the buildfarm isn't running this test because
      it wasn't hooked into "make installcheck" either.
      958aa438
    • Andrew Dunstan's avatar
      Don't listen to localhost in ssl_passphrase_callback test · e984fb34
      Andrew Dunstan authored
      Commit 896fcdb2 contained an unnecessary setting that listened to
      localhost. Since the test doesn't actually try to make an SSL connection
      to the database this isn't required. Moreover, it's a security hole.
      
      Per gripe from Tom Lane.
      e984fb34
  2. 25 Mar, 2020 11 commits
  3. 24 Mar, 2020 15 commits
  4. 23 Mar, 2020 10 commits
  5. 22 Mar, 2020 1 commit
  6. 21 Mar, 2020 1 commit
    • Tom Lane's avatar
      Fix up recent breakage of headerscheck and cpluspluscheck. · d0587f52
      Tom Lane authored
      headerscheck and cpluspluscheck should skip the recently-added
      cmdtaglist.h header, since (like kwlist.h and some other similarly-
      designed headers) it's not meant to be included standalone.
      
      evtcache.h was missing an #include to support its usage of Bitmapset.
      
      typecmds.h was missing an #include to support its usage of ParseState.
      
      The first two of these were evidently oversights in commit 2f966131.
      I didn't track down exactly which change broke typecmds.h, but it
      must have been some rearrangement in one of its existing inclusions,
      because it's referenced ParseState for quite a long time and there
      were not complaints from these checking programs before.
      d0587f52