1. 12 May, 2004 5 commits
  2. 11 May, 2004 8 commits
  3. 10 May, 2004 6 commits
  4. 08 May, 2004 6 commits
    • Tom Lane's avatar
      Fix a couple of oversights in new ALTER TABLE code that broke · 7a3977c0
      Tom Lane authored
      ALTER SET STATISTICS for functional indexes.
      7a3977c0
    • Tom Lane's avatar
      Alter string format used for integer and OID lists in stored rules. · c00b3099
      Tom Lane authored
      This simplifies and speeds up the reader by letting it get the representation
      right the first time, rather than correcting it after-the-fact.  Also,
      after int and OID lists become separate node types per Neil's pending
      patch, this will let us treat these lists as just plain Nodes instead
      of requiring separate read/write macros the way we have now.
      c00b3099
    • Tom Lane's avatar
      Get rid of rd_nblocks field in relcache entries. Turns out this was · 4af34211
      Tom Lane authored
      costing us lots more to maintain than it was worth.  On shared tables
      it was of exactly zero benefit because we couldn't trust it to be
      up to date.  On temp tables it sometimes saved an lseek, but not often
      enough to be worth getting excited about.  And the real problem was that
      we forced an lseek on every relcache flush in order to update the field.
      So all in all it seems best to lose the complexity.
      4af34211
    • Bruce Momjian's avatar
      Fix typo. · 1fe11fad
      Bruce Momjian authored
      1fe11fad
    • Bruce Momjian's avatar
    • Tom Lane's avatar
      Get rid of cluster.c's apparatus for rebuilding a relation's indexes · dd16b7aa
      Tom Lane authored
      in favor of using the REINDEX TABLE apparatus, which does the same thing
      simpler and faster.  Also, make TRUNCATE not use cluster.c at all, but
      just assign a new relfilenode and REINDEX.  This partially addresses
      Hartmut Raschick's complaint from last December that 7.4's TRUNCATE is
      an order of magnitude slower than prior releases.  By getting rid of
      a lot of unnecessary catalog updates, these changes buy back about a
      factor of two (on my system).  The remaining overhead seems associated
      with creating and deleting storage files, which we may not be able to
      do much about without abandoning transaction safety for TRUNCATE.
      dd16b7aa
  5. 07 May, 2004 10 commits
  6. 06 May, 2004 5 commits