1. 12 Jan, 2003 8 commits
  2. 11 Jan, 2003 10 commits
  3. 10 Jan, 2003 7 commits
  4. 09 Jan, 2003 10 commits
  5. 08 Jan, 2003 5 commits
    • Bruce Momjian's avatar
    • Tom Lane's avatar
    • Bruce Momjian's avatar
      The second was that renegotiation was just plain broken. I can't · b56af498
      Bruce Momjian authored
      believe I didn't notice this before -- once 64k was sent to/from the
      server the client would crash.  Basicly, in 7.3 the server SSL code set
      the initial state to "about to renegotiate" without actually starting
      the renegotiation.  In addition, the server and client didn't properly
      handle the SSL_ERROR_WANT_(READ|WRITE) error.  This is fixed in the
      second patch.
      
      Nathan Mueller
      b56af498
    • Bruce Momjian's avatar
      I was playing around with 7.3.1 and found some more SSL problems. The · 6ccb5aeb
      Bruce Momjian authored
      first, that I missed when checking over 7.3.1, was that the client
      method was switched to SSLv23 along with the server.  The SSLv23 client
      method does SSLv2 by default, but can also understand SSLv3.  In our
      situation the SSLv2 backwords compatibility is really only needed on the
      server.  This is the first patch.
      
      The last thing is that I found a way for the server to understand SSLv2
      HELLO messages (sent by pre-7.3 clients) but then get them to talk
      SSLv3.  This is the last one.
      
      Nathan Mueller
      6ccb5aeb
    • Bruce Momjian's avatar
      Fix dumping of DEFERRABLE/INITIALLY DEFERRED: · d31b20af
      Bruce Momjian authored
      > The big problem is that while pg_dump's dump_trigger() looks at
      > tginitdeferred and dumps accordingly, pg_get_constraintdef doesn't look
      > at tginitdeferred, and therefore doesn't record the requirement as part
      > of ALTER TABLE ADD CONSTRAINT.
      
      pg_get_constraintdef should probably be looking at condeferrable and
      condeferred in the pg_constraint row it's looking at.  Maybe something
      like the attached.
      
      (Added, output only non-default values.)
      
      Stephan Szabo
      d31b20af