1. 21 Feb, 2003 1 commit
    • Tom Lane's avatar
      Make btree index structure adjustments and WAL logging changes needed to · 70508ba7
      Tom Lane authored
      support btree compaction, as per proposal of a few days ago.  btree index
      pages no longer store parent links, instead they have a level indicator
      (counting up from zero for leaf pages).  The FixBTree recovery logic is
      removed, and replaced by code that detects missing parent-level insertions
      during WAL replay.  Also, generate appropriate WAL entries when updating
      btree metapage and when building a btree index from scratch.  I believe
      btree indexes are now completely WAL-legal for the first time.
      initdb forced due to index and WAL changes.
      70508ba7
  2. 20 Feb, 2003 1 commit
  3. 19 Feb, 2003 17 commits
  4. 18 Feb, 2003 13 commits
  5. 17 Feb, 2003 7 commits
    • Bruce Momjian's avatar
      Add: · cf55ee57
      Bruce Momjian authored
      > * Allow CIDR format to be used in pg_hba.conf
      cf55ee57
    • Bruce Momjian's avatar
      Update marks: · a8ed5dc0
      Bruce Momjian authored
      < 	o Allow CLUSTER to cluster all tables (Alvaro Herrera)
      > 	o -Allow CLUSTER to cluster all tables (Alvaro Herrera)
      243c243
      < * Allow pg_dump to dump a specific schema (Neil Conway)
      > * -Allow pg_dump to dump a specific schema (Neil Conway)
      398c398
      < * Make IN/NOT IN have similar performance to EXISTS/NOT EXISTS (Tom)
      > * -Make IN/NOT IN have similar performance to EXISTS/NOT EXISTS (Tom)
      a8ed5dc0
    • Bruce Momjian's avatar
      Remove IN/EXISTS TODO.detail item. · fa4574e3
      Bruce Momjian authored
      fa4574e3
    • Bruce Momjian's avatar
      Mark as done: · 4ba4b4a6
      Bruce Momjian authored
      > 	o -Add ALTER TABLE tab SET WITHOUT OIDS (Rod)
      
      > 	o -Allow CLUSTER to cluster all tables (Alvaro Herrera)
      
      > * -Allow pg_dump to dump a specific schema (Neil Conway)
      
      > * -Make IN/NOT IN have similar performance to EXISTS/NOT EXISTS (Tom)
      
      > * Rod is Rod Taylor <pg@rbt.ca)>
      4ba4b4a6
    • Bruce Momjian's avatar
      Update: · 92a7ef9d
      Bruce Momjian authored
      < * -Make a transaction-safe TRUNCATE
      > * -Make a transaction-safe TRUNCATE (Rod)
      92a7ef9d
    • Bruce Momjian's avatar
      Done: · 52d0feec
      Bruce Momjian authored
      > * -Make a transaction-safe TRUNCATE
      52d0feec
    • Michael Meskes's avatar
      Added Informix "database" command. · 244d2d67
      Michael Meskes authored
      244d2d67
  6. 16 Feb, 2003 1 commit
    • Tom Lane's avatar
      Back off previous patch to skip projection step in scan plan nodes, · 72933a92
      Tom Lane authored
      in the case where the node immediately above the scan is a Hash, Sort,
      or Material node.  In these cases it's better to do the projection
      so that we don't store unneeded columns in the hash/sort/materialize
      table.  Per discussion a few days ago with Anagh Lal.
      72933a92