Skip to content
Snippets Groups Projects
  1. Aug 11, 2006
  2. Aug 09, 2006
  3. Aug 08, 2006
  4. Aug 06, 2006
    • Tom Lane's avatar
      Add support for forcing a switch to a new xlog file; cause such a switch · 704ddaaa
      Tom Lane authored
      to happen automatically during pg_stop_backup().  Add some functions for
      interrogating the current xlog insertion point and for easily extracting
      WAL filenames from the hex WAL locations displayed by pg_stop_backup
      and friends.  Simon Riggs with some editorialization by Tom Lane.
      704ddaaa
  5. Aug 04, 2006
  6. Aug 03, 2006
    • Tom Lane's avatar
      Cause ALTER TABLE to perform ALTER COLUMN DROP DEFAULT operations during · 7946f772
      Tom Lane authored
      the DROP pass rather than the ADD_CONSTR pass.  On examining the code I
      think this was just an oversight rather than intentional, and it seems
      to satisfy the principle of least surprise better than the alternative
      solution that was discussed.  Add an example to the ref page showing how
      to do ALTER TYPE and update the default in one command.  Per gripe from
      Markus Bertheau that that wasn't possible.
      7946f772
  7. Aug 02, 2006
  8. Aug 01, 2006
  9. Jul 31, 2006
    • Tom Lane's avatar
      Change the relation_open protocol so that we obtain lock on a relation · 09d3670d
      Tom Lane authored
      (table or index) before trying to open its relcache entry.  This fixes
      race conditions in which someone else commits a change to the relation's
      catalog entries while we are in process of doing relcache load.  Problems
      of that ilk have been reported sporadically for years, but it was not
      really practical to fix until recently --- for instance, the recent
      addition of WAL-log support for in-place updates helped.
      
      Along the way, remove pg_am.amconcurrent: all AMs are now expected to support
      concurrent update.
      09d3670d
    • Tom Lane's avatar
      Change the bootstrap sequence so that toast tables for system catalogs are · 6e38e34d
      Tom Lane authored
      created in the bootstrap phase proper, rather than added after-the-fact
      by initdb.  This is cleaner than before because it allows us to retire the
      undocumented ALTER TABLE ... CREATE TOAST TABLE command, but the real reason
      I'm doing it is so that toast tables of shared catalogs will now have
      predetermined OIDs.  This will allow a reasonably clean solution to the
      problem of locking tables before we load their relcache entries, to appear
      in a forthcoming patch.
      6e38e34d
    • Alvaro Herrera's avatar
  10. Jul 30, 2006
    • Bruce Momjian's avatar
      Add: · d6603791
      Bruce Momjian authored
      > * Consider detoasting keys before sorting
      d6603791
  11. Jul 29, 2006
    • Bruce Momjian's avatar
      Add entry: · 6dd2b772
      Bruce Momjian authored
      > * Add column to pg_stat_activity that shows the progress of long-running
      >   commands like CREATE INDEX and VACUUM
      6dd2b772
Loading