1. 07 Oct, 2005 2 commits
    • Bruce Momjian's avatar
      Update: · ab13353d
      Bruce Momjian authored
      < * Consider compressing indexes by storing key prefix values shared by
      > * Consider compressing indexes by storing key values duplicated in
      735a736,737
      >
      >   This is difficult because it requires datatype-specific knowledge.
      ab13353d
    • Bruce Momjian's avatar
      Add: · 02eb6ea9
      Bruce Momjian authored
      <
      > * Consider compressing indexes by storing key prefix values shared by
      >   several rows as a single index entry
      02eb6ea9
  2. 06 Oct, 2005 8 commits
  3. 05 Oct, 2005 8 commits
  4. 04 Oct, 2005 7 commits
  5. 03 Oct, 2005 14 commits
  6. 02 Oct, 2005 1 commit
    • Tom Lane's avatar
      Change nextval and other sequence functions to specify their sequence · aa731ed8
      Tom Lane authored
      argument as a 'regclass' value instead of a text string.  The frontend
      conversion of text string to pg_class OID is now encapsulated as an
      implicitly-invocable coercion from text to regclass.  This provides
      backwards compatibility to the old behavior when the sequence argument
      is explicitly typed as 'text'.  When the argument is just an unadorned
      literal string, it will be taken as 'regclass', which means that the
      stored representation will be an OID.  This solves longstanding problems
      with renaming sequences that are referenced in default expressions, as
      well as new-in-8.1 problems with renaming such sequences' schemas or
      moving them to another schema.  All per recent discussion.
      Along the way, fix some rather serious problems in dbmirror's support
      for mirroring sequence operations (int4 vs int8 confusion for instance).
      aa731ed8