1. 19 Feb, 2012 3 commits
  2. 18 Feb, 2012 5 commits
  3. 17 Feb, 2012 1 commit
    • Tom Lane's avatar
      Fix longstanding error in contrib/intarray's int[] & int[] operator. · 06d9afa6
      Tom Lane authored
      The array intersection code would give wrong results if the first entry of
      the correct output array would be "1".  (I think only this value could be
      at risk, since the previous word would always be a lower-bound entry with
      that fixed value.)
      
      Problem spotted by Julien Rouhaud, initial patch by Guillaume Lelarge,
      cosmetic improvements by me.
      06d9afa6
  4. 16 Feb, 2012 5 commits
    • Tom Lane's avatar
      Improve statistics estimation to make some use of DISTINCT in sub-queries. · 4767bc8f
      Tom Lane authored
      Formerly, we just punted when trying to estimate stats for variables coming
      out of sub-queries using DISTINCT, on the grounds that whatever stats we
      might have for underlying table columns would be inapplicable.  But if the
      sub-query has only one DISTINCT column, we can consider its output variable
      as being unique, which is useful information all by itself.  The scope of
      this improvement is pretty narrow, but it costs nearly nothing, so we might
      as well do it.  Per discussion with Andres Freund.
      
      This patch differs from the draft I submitted yesterday in updating various
      comments about vardata.isunique (to reflect its extended meaning) and in
      tweaking the interaction with security_barrier views.  There does not seem
      to be a reason why we can't use this sort of knowledge even when the
      sub-query is such a view.
      4767bc8f
    • Robert Haas's avatar
      pg_dump: Miscellaneous tightening based on recent refactorings. · 1cc1b91d
      Robert Haas authored
      Use exit_horribly() and ExecuteSqlQueryForSingleRow() in various
      places where it's equivalent, or nearly equivalent, to the prior
      coding. Apart from being more compact, this also makes the error
      messages for the wrong-number-of-tuples case more consistent.
      1cc1b91d
    • Robert Haas's avatar
      pg_dump: Remove global connection pointer. · 689d0eb7
      Robert Haas authored
      Parallel pg_dump wants to have multiple ArchiveHandle objects, and
      therefore multiple PGconns, in play at the same time.  This should
      be just about the end of the refactoring that we need in order to
      make that workable.
      689d0eb7
    • Robert Haas's avatar
      Refactor pg_dump.c to avoid duplicating returns-one-row check. · 549e93c9
      Robert Haas authored
      Any patches apt to get broken have probably already been broken by the
      error-handling cleanups I just did, so we might as well clean this up
      at the same time.
      549e93c9
    • Robert Haas's avatar
      Invent on_exit_nicely for pg_dump. · e9a22259
      Robert Haas authored
      Per recent discussions on pgsql-hackers regarding parallel pg_dump.
      e9a22259
  5. 15 Feb, 2012 10 commits
  6. 14 Feb, 2012 9 commits
  7. 13 Feb, 2012 4 commits
  8. 11 Feb, 2012 1 commit
    • Tom Lane's avatar
      Fix I/O-conversion-related memory leaks in plpgsql. · 58a9596e
      Tom Lane authored
      Datatype I/O functions are allowed to leak memory in CurrentMemoryContext,
      since they are generally called in short-lived contexts.  However, plpgsql
      calls such functions for purposes of type conversion, and was calling them
      in its procedure context.  Therefore, any leaked memory would not be
      recovered until the end of the plpgsql function.  If such a conversion
      was done within a loop, quite a bit of memory could get consumed.  Fix by
      calling such functions in the transient "eval_econtext", and adjust other
      logic to match.  Back-patch to all supported versions.
      
      Andres Freund, Jan Urbański, Tom Lane
      58a9596e
  9. 10 Feb, 2012 2 commits
    • Tom Lane's avatar
      Fix oversight in pg_dump's handling of extension configuration tables. · 59de132f
      Tom Lane authored
      If an extension has not been selected to be dumped (perhaps because of
      a --schema or --table switch), the contents of its configuration tables
      surely should not get dumped either.  Per gripe from
      Hubert Depesz Lubaczewski.
      59de132f
    • Tom Lane's avatar
      Fix brain fade in previous pg_dump patch. · 97dc3c8a
      Tom Lane authored
      In pre-7.3 databases, pg_attribute.attislocal doesn't exist.  The easiest
      way to make sure the new inheritance logic behaves sanely is to assume it's
      TRUE, not FALSE.  This will result in printing child columns even when
      they're not really needed.  We could work harder at trying to reconstruct a
      value for attislocal, but there is little evidence that anyone still cares
      about dumping from such old versions, so just do the minimum necessary to
      have a valid dump.
      
      I had this correct in the original draft of the patch, but for some
      unaccountable reason decided it wasn't necessary to change the value.
      Testing against an old server shows otherwise...
      97dc3c8a