1. 20 Apr, 2011 3 commits
    • Bruce Momjian's avatar
      Pg_upgrade C comment addition. · 0262251c
      Bruce Momjian authored
      Document why we do the missing new database check during the check
      phase.
      0262251c
    • Heikki Linnakangas's avatar
      Quotes in strings injected into bki file need to escaped. In particular, · 2b919118
      Heikki Linnakangas authored
      "People's Republic of China" locale on Windows was causing initdb to fail.
      
      This fixes bug #5818 reported by yulei. On master, this makes the mapping
      of "People's Republic of China" to just "China" obsolete. In 9.0 and 8.4,
      just fix the escaping. Earlier versions didn't have locale names in bki
      file.
      2b919118
    • Bruce Momjian's avatar
      Throw error for mismatched pg_upgrade clusters · 7228d029
      Bruce Momjian authored
      If someone removes the 'postgres' database from the old cluster and the
      new cluster has a 'postgres' database, the number of databases will not
      match.  We actually could upgrade such a setup, but it would violate the
      1-to-1 mapping of database counts, so we throw an error instead.
      
      Previously they got an error during the upgrade, and not at the check
      stage; PG 9.0.4 does the same.
      7228d029
  2. 19 Apr, 2011 11 commits
  3. 18 Apr, 2011 4 commits
  4. 17 Apr, 2011 6 commits
    • Tom Lane's avatar
      Fix assorted infelicities in collation handling in psql's describe.c. · c29abc8b
      Tom Lane authored
      In \d, be more careful to print collation only if it's not the default for
      the column's data type.  Avoid assuming that the name "default" is magic.
      
      Fix \d on a composite type so that it will print per-column collations.
      It's no longer the case that a composite type cannot have modifiers.
      (In consequence, the expected outputs for composite-type regression tests
      change.)
      
      Fix \dD so that it will print collation for a domain, again only if it's
      not the same as the base type's collation.
      c29abc8b
    • Tom Lane's avatar
      Document COLLATE option in CREATE TYPE reference page. · 2d461712
      Tom Lane authored
      Curiously, it was already documented in ALTER TYPE ADD ATTRIBUTE, but
      not here.
      2d461712
    • Tom Lane's avatar
      Fix pg_dump to handle collations applied to columns of composite types. · acfa1f45
      Tom Lane authored
      CREATE TYPE and ALTER TYPE ADD ATTRIBUTE handle this, so I suppose it's
      an intended feature, but pg_dump didn't know about it.
      acfa1f45
    • Tom Lane's avatar
      Add check for matching column collations in ALTER TABLE ... INHERIT. · 49a642ab
      Tom Lane authored
      The other DDL operations that create an inheritance relationship were
      checking for collation match already, but this one got missed.
      
      Also fix comments that failed to mention collation checks.
      49a642ab
    • Tom Lane's avatar
      Support a COLLATE clause in plpgsql variable declarations. · c9473258
      Tom Lane authored
      This allows the usual rules for assigning a collation to a local variable
      to be overridden.  Per discussion, it seems appropriate to support this
      rather than forcing all local variables to have the argument-derived
      collation.
      c9473258
    • Tom Lane's avatar
      foreach() and list_delete() don't mix. · 88dc6fa7
      Tom Lane authored
      Fix crash when releasing duplicate entries in the encoding conversion cache
      list, caused by releasing the current entry of the list being chased by
      foreach().  We have a standard idiom for handling such cases, but this
      loop wasn't using it.
      
      This got broken in my recent rewrite of GUC assign hooks.  Not sure how
      I missed this when testing the modified code, but I did.  Per report from
      Peter.
      88dc6fa7
  5. 16 Apr, 2011 5 commits
    • Tom Lane's avatar
      Add an Assert that indexam.c isn't used on an index awaiting reindexing. · d2f60a3a
      Tom Lane authored
      This might have caught the recent embarrassment over trying to modify
      pg_index while its indexes were being rebuilt.
      
      Noah Misch
      d2f60a3a
    • Tom Lane's avatar
      Simplify reindex_relation's API. · 2d3320d3
      Tom Lane authored
      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
    • Tom Lane's avatar
      Clean up collation processing in prepunion.c. · 121f49a0
      Tom Lane authored
      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
    • Peter Eisentraut's avatar
      Set client encoding explicitly in plpython_unicode test · 5809a645
      Peter Eisentraut authored
      This will (hopefully) eliminate the need for the
      plpython_unicode_0.out expected file.
      5809a645
    • Tom Lane's avatar
      Prevent incorrect updates of pg_index while reindexing pg_index itself. · 4b6106cc
      Tom Lane authored
      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
  6. 15 Apr, 2011 8 commits
  7. 14 Apr, 2011 3 commits