1. 18 May, 2007 2 commits
    • Bruce Momjian's avatar
      Done: · f22967ee
      Bruce Momjian authored
      < * Fix problem with excessive logging during SSL disconnection
      > * -Fix problem with excessive logging during SSL disconnection
      f22967ee
    • Tom Lane's avatar
      Remove redundant logging of send failures when SSL is in use. While pqcomm.c · d1972c52
      Tom Lane authored
      had been taught not to do that ages ago, the SSL code was helpfully bleating
      anyway.  Resolves some recent reports such as bug #3266; however the
      underlying cause of the related bug #2829 is still unclear.
      d1972c52
  2. 17 May, 2007 11 commits
  3. 16 May, 2007 2 commits
  4. 15 May, 2007 10 commits
  5. 14 May, 2007 5 commits
  6. 13 May, 2007 2 commits
  7. 12 May, 2007 4 commits
  8. 11 May, 2007 3 commits
    • Tom Lane's avatar
      Fix my oversight in enabling domains-of-domains: ALTER DOMAIN ADD CONSTRAINT · d8326119
      Tom Lane authored
      needs to check the new constraint against columns of derived domains too.
      
      Also, make it error out if the domain to be modified is used within any
      composite-type columns.  Eventually we should support that case, but it seems
      a bit painful, and not suitable for a back-patch.  For the moment just let the
      user know we can't do it.
      
      Backpatch to 8.2, which is the only released version that allows nested
      domains.  Possibly the other part should be back-patched further.
      d8326119
    • Neil Conway's avatar
      3b6afdd7
    • Tom Lane's avatar
      Support arrays of composite types, including the rowtypes of regular tables · bc8036fc
      Tom Lane authored
      and views (but not system catalogs, nor sequences or toast tables).  Get rid
      of the hardwired convention that a type's array type is named exactly "_type",
      instead using a new column pg_type.typarray to provide the linkage.  (It still
      will be named "_type", though, except in odd corner cases such as
      maximum-length type names.)
      
      Along the way, make tracking of owner and schema dependencies for types more
      uniform: a type directly created by the user has these dependencies, while a
      table rowtype or auto-generated array type does not have them, but depends on
      its parent object instead.
      
      David Fetter, Andrew Dunstan, Tom Lane
      bc8036fc
  9. 10 May, 2007 1 commit