1. 11 6月, 2009 13 次提交
  2. 10 6月, 2009 14 次提交
  3. 09 6月, 2009 3 次提交
  4. 08 6月, 2009 2 次提交
    • T
      Be a bit more verbose about the effects of string literal processing · 506183e4
      Tom Lane 提交于
      changes in plpgsql.  Per bug #4843.
      506183e4
    • T
      Revert my patch of 2009-04-04 that removed contrib/intarray's definitions of · 156475a5
      Tom Lane 提交于
      the <@ and @> operators.  These are not in fact equivalent to the built-in
      anyarray operators of the same names, because they have different behavior for
      empty arrays, namely they don't think empty arrays are contained in anything.
      That is mathematically wrong, no doubt, but until we can persuade GIN indexes
      to implement the mathematical definition we should probably not change this.
      Another reason for not changing it now is that we can't yet ensure the
      opclasses will be updated correctly in a dump-and-reload upgrade.  Per
      recent discussions.
      156475a5
  5. 07 6月, 2009 2 次提交
    • T
      Improve the IndexVacuumInfo/IndexBulkDeleteResult API to allow somewhat sane · 32ea2363
      Tom Lane 提交于
      behavior in cases where we don't know the heap tuple count accurately; in
      particular partial vacuum, but this also makes the API a bit more useful
      for ANALYZE.  This patch adds "estimated_count" flags to both structs so
      that an approximate count can be flagged as such, and adjusts the logic
      so that approximate counts are not used for updating pg_class.reltuples.
      
      This fixes my previous complaint that VACUUM was putting ridiculous values
      into pg_class.reltuples for indexes.  The actual impact of that bug is
      limited, because the planner only pays attention to reltuples for an index
      if the index is partial; which probably explains why beta testers hadn't
      noticed a degradation in plan quality from it.  But it needs to be fixed.
      
      The whole thing is a bit messy and should be redesigned in future, because
      reltuples now has the potential to drift quite far away from reality when
      a long period elapses with no non-partial vacuums.  But this is as good as
      it's going to get for 8.4.
      32ea2363
    • J
      Add support for using SQL/MED compliant FOREIGN DATA WRAPPER, SERVER, · 4334695b
      Joe Conway 提交于
      and USER MAPPING as method to supply dblink connect parameters. Per
      mailing list and PGCon discussions.
      4334695b
  6. 06 6月, 2009 5 次提交
  7. 05 6月, 2009 1 次提交