1. 30 Oct, 2007 2 commits
    • Tom Lane's avatar
      Add a note pointing out that some other databases make GREATEST and · 897313e8
      Tom Lane authored
      LEAST handle NULL arguments differently than we do.  Per a discussion
      on 30-Jun that somehow didn't get done.
      897313e8
    • Marc G. Fournier's avatar
      · b9735307
      Marc G. Fournier authored
      simple script to pull together a very small (<500k) tar file that builds
      *just* libpq ... its not perfect, as it pulls in more files then is
      necessarily required to build, but as it is, it requires one simple patch
      to configure.in in order to work ...
      
      Tested on FreeBSD ... patch for configure.in hasn't been applied, but
      putting the script in place so that it doesn't get lost ...
      b9735307
  2. 29 Oct, 2007 12 commits
  3. 28 Oct, 2007 4 commits
    • Tom Lane's avatar
      Ooops, fat-fingered last commit message. Should have · 3fe26620
      Tom Lane authored
      mentioned updating FAQ_IRIX for information about buggy MIPSPro
      compiler version, now confirmed by Herve Boulouis.
      3fe26620
    • Tom Lane's avatar
      FAQ_IRIX · d034a268
      Tom Lane authored
      d034a268
    • Tom Lane's avatar
      Make pg_dump and friends consistently report both the filename and the · 27c033ed
      Tom Lane authored
      errno string when complaining of fopen failures.  Per gripe from Bob
      Pawley, it's not always instantly obvious to the user which name we
      tried to open.
      27c033ed
    • Tom Lane's avatar
      Fix a couple of issues with pg_dump's handling of inheritance child tables · 006f42c7
      Tom Lane authored
      that have default expressions different from their parent.  First, if the
      parent table's default expression has to be split out as a separate
      ALTER TABLE command, we need a dependency constraint to ensure that the
      child's command is given second.  This is because the ALTER TABLE on the
      parent will propagate to the child.  (We can't prevent that by using ONLY on
      the parent's command, since it's possible that other children exist that
      should receive the inherited default.)  Second, if the child has a NULL
      default where the parent does not, we have to explicitly say DEFAULT NULL on
      the child in order for this state to be preserved after reload.  (The latter
      actually doesn't work right because of a backend bug, but that is a separate
      issue.)
      
      Backpatch as far as 8.0.  7.x pg_dump has enough issues with altered tables
      (due to lack of dependency analysis) that trying to fix this one doesn't seem
      very productive.
      006f42c7
  4. 27 Oct, 2007 7 commits
  5. 26 Oct, 2007 9 commits
  6. 25 Oct, 2007 6 commits