1. 20 4月, 2011 4 次提交
  2. 19 4月, 2011 3 次提交
  3. 18 4月, 2011 9 次提交
  4. 17 4月, 2011 4 次提交
    • T
      Add an Assert that indexam.c isn't used on an index awaiting reindexing. · d2f60a3a
      Tom Lane 提交于
      This might have caught the recent embarrassment over trying to modify
      pg_index while its indexes were being rebuilt.
      
      Noah Misch
      d2f60a3a
    • T
      Simplify reindex_relation's API. · 2d3320d3
      Tom Lane 提交于
      For what seem entirely historical reasons, a bitmask "flags" argument was
      recently added to reindex_relation without subsuming its existing boolean
      argument into that bitmask.  This seems a bit bizarre, so fold them
      together.
      2d3320d3
    • T
      Clean up collation processing in prepunion.c. · 121f49a0
      Tom Lane 提交于
      This area was a few bricks shy of a load, and badly under-commented too.
      We have to ensure that the generated targetlist entries for a set-operation
      node expose the correct collation for each entry, since higher-level
      processing expects the tlist to reflect the true ordering of the plan's
      output.
      
      This hackery wouldn't be necessary if SortGroupClause carried collation
      info ... but making it do so would inject more pain in the parser than
      would be saved here.  Still, we might want to rethink that sometime.
      121f49a0
    • P
      Set client encoding explicitly in plpython_unicode test · 5809a645
      Peter Eisentraut 提交于
      This will (hopefully) eliminate the need for the
      plpython_unicode_0.out expected file.
      5809a645
  5. 16 4月, 2011 5 次提交
    • T
      Prevent incorrect updates of pg_index while reindexing pg_index itself. · 4b6106cc
      Tom Lane 提交于
      The places that attempt to change pg_index.indcheckxmin during a reindexing
      operation cannot be executed safely if pg_index itself is the subject of
      the operation.  This is the explanation for a couple of recent reports of
      VACUUM FULL failing with
      	ERROR:  duplicate key value violates unique constraint "pg_index_indexrelid_index"
      	DETAIL:  Key (indexrelid)=(2678) already exists.
      
      However, there isn't any real need to update indcheckxmin in such a
      situation, if we assume that pg_index can never contain a truly broken HOT
      chain.  This assumption holds if new indexes are never created on it during
      concurrent operations, which is something we don't consider safe for any
      system catalog, not just pg_index.  Accordingly, modify the code to not
      manipulate indcheckxmin when reindexing any system catalog.
      
      Back-patch to 8.3, where HOT was introduced.  The known failure scenarios
      involve 9.0-style VACUUM FULL, so there might not be any real risk before
      9.0, but let's not assume that.
      4b6106cc
    • T
      Suppress unused-function warning on non-WIN32 builds. · ff5565f0
      Tom Lane 提交于
      ff5565f0
    • T
      Guard against incoming rowcount estimate of NaN in cost_mergejoin(). · 72826fb3
      Tom Lane 提交于
      Although rowcount estimates really ought not be NaN, a bug elsewhere
      could perhaps result in that, and that would cause Assert failure in
      cost_mergejoin, which I believe to be the explanation for bug #5977 from
      Anton Kuznetsov.  Seems like a good idea to expend a couple more cycles
      to prevent that, even though the real bug is elsewhere.  Not back-patching,
      though, because we don't encourage running production systems with
      Asserts on.
      72826fb3
    • H
      setlocale() on Windows doesn't work correctly if the locale name contains · d5a7bf8c
      Heikki Linnakangas 提交于
      apostrophes or dots. There isn't much hope of Microsoft fixing it any time
      soon, it's been like that for ages, so we better work around it. So, map a
      few common Windows locale names known to cause problems to aliases that work.
      d5a7bf8c
    • H
      On Windows, if the encoding implied by locale is not allowed as a · 1f943dc8
      Heikki Linnakangas 提交于
      server-encoding, fall back to UTF-8. It happens at least with the Chinese
      locale, which implies BIG5. This is safe, because on Windows all locales
      are compatible with UTF-8.
      1f943dc8
  6. 15 4月, 2011 6 次提交
  7. 14 4月, 2011 7 次提交
    • R
      Remove obsolete comment. · 0c80b57d
      Robert Haas 提交于
      The lock level for adding a parent table is now ShareUpdateExclusiveLock;
      see commit fbcf4b92.  This comment didn't
      get updated to match, but it doesn't seem important to mention this detail
      here, so rather than updating it now, just take it out.
      0c80b57d
    • R
      Fix toast table creation. · 39a68e5c
      Robert Haas 提交于
      Instead of using slightly-too-clever heuristics to decide when we must
      create a TOAST table, just check whether one is needed every time the
      table is altered.  Checking whether a toast table is needed is cheap
      enough that we needn't worry about doing it on every ALTER TABLE command,
      and the previous coding is apparently prone to accidental breakage:
      commit 04e17bae broken ALTER TABLE ..
      SET STORAGE, which moved some actions from AT_PASS_COL_ATTRS to
      AT_PASS_MISC, and commit 6c572399 broke
      ALTER TABLE .. ADD COLUMN by changing the way that adding columns
      recurses into child tables.
      
      Noah Misch, with one comment change by me
      39a68e5c
    • T
      Ensure mark_dummy_rel doesn't create dangling pointers in RelOptInfos. · eca75a12
      Tom Lane 提交于
      When we are doing GEQO join planning, the current memory context is a
      short-lived context that will be reset at the end of geqo_eval().  However,
      the RelOptInfos for base relations are set up before that and then re-used
      across many GEQO cycles.  Hence, any code that modifies a baserel during
      join planning has to be careful not to put pointers to the short-lived
      context into the baserel struct.  mark_dummy_rel got this wrong, leading to
      easy-to-reproduce-once-you-know-how crashes in 8.4, as reported off-list by
      Leo Carson of SDSC.  Some improvements made in 9.0 make it difficult to
      demonstrate the crash in 9.0 or HEAD; but there's no doubt that there's
      still a risk factor here, so patch all branches that have the function.
      (Note: 8.3 has a similar function, but it's only applied to joinrels and
      thus is not a hazard.)
      eca75a12
    • T
      Update time zone data files to tzdata release 2011f. · 170aeb54
      Tom Lane 提交于
      DST law changes in Chile, Cuba, Falkland Islands, Morocco, Samoa, Turkey.
      Historical corrections for South Australia, Alaska, Hawaii.
      170aeb54
    • R
      Avoid incorrectly granting replication to roles created with NOSUPERUSER. · 0a49c95c
      Robert Haas 提交于
      Andres Freund
      0a49c95c
    • H
      On HP/UX, the structs used by ioctl(SIOCGLIFCONF) are named differently · 40e64017
      Heikki Linnakangas 提交于
      than on other platforms, and only IPv6 addresses are returned. Because of
      those two issues, fall back to ioctl(SIOCGIFCONF) on HP/UX, so that it at
      least compiles and finds IPv4 addresses. This function is currently only
      used for interpreting samehost/samenet in pg_hba.conf, which isn't that
      critical.
      40e64017
    • H
      Revert the patch to check if we've reached end-of-backup also when doing · 54685b1c
      Heikki Linnakangas 提交于
      crash recovery, and throw an error if not. hubert depesz lubaczewski pointed
      out that that situation also happens in the crash recovery following a
      system crash that happens during an online backup.
      
      We might want to do something smarter in 9.1, like put the check back for
      backups taken with pg_basebackup, but that's for another patch.
      54685b1c
  8. 13 4月, 2011 2 次提交