1. 19 Jun, 2000 7 commits
  2. 18 Jun, 2000 3 commits
    • Tom Lane's avatar
      Reimplement nodeMaterial to use a temporary BufFile (or even memory, if the · 1ee26b77
      Tom Lane authored
      materialized tupleset is small enough) instead of a temporary relation.
      This was something I was thinking of doing anyway for performance, and Jan
      says he needs it for TOAST because he doesn't want to cope with toasting
      noname relations.  With this change, the 'noname table' support in heap.c
      is dead code, and I have accordingly removed it.  Also clean up 'noname'
      plan handling in planner --- nonames are either sort or materialize plans,
      and it seems less confusing to handle them separately under those names.
      1ee26b77
    • Peter Eisentraut's avatar
      Separated set constraints and set transaction reference pages, revised set · 2c0edb3c
      Peter Eisentraut authored
      reference page to new configuration system. Big update to administrator's
      guide, chapters Runtime environment, Client authentication, and User
      management, the latter two were part of the old Security chapter.
      2c0edb3c
    • Tom Lane's avatar
      Reinstate BufFileTell(). · b4e906f1
      Tom Lane authored
      b4e906f1
  3. 17 Jun, 2000 4 commits
    • Tom Lane's avatar
      Get rid of IndexIsUniqueNoCache() kluge by the simple expedient of · edf0b5f0
      Tom Lane authored
      passing the index-is-unique flag to index build routines (duh! ...
      why wasn't it done this way to begin with?).  Aside from eliminating
      an eyesore, this should save a few milliseconds in btree index creation
      because a full scan of pg_index is not needed any more.
      edf0b5f0
    • Tom Lane's avatar
      Fix performance problems with pg_index lookups (see, for example, · d03a933e
      Tom Lane authored
      discussion of 5/19/00).  pg_index is now searched for indexes of a
      relation using an indexscan.  Moreover, this is done once and cached
      in the relcache entry for the relation, in the form of a list of OIDs
      for the indexes.  This list is used by the parser and executor to drive
      lookups in the pg_index syscache when they want to know the properties
      of the indexes.  Net result: index information will be fully cached
      for repetitive operations such as inserts.
      d03a933e
    • Tom Lane's avatar
      Clean out another pocket of functions called via nonspecific function · 9cf80f2f
      Tom Lane authored
      pointers, namely the catcache tuple fetch routines.  Also get rid of
      the unused and possibly confusing 'size' field in struct cachedesc.
      Since it doesn't allow for variable-length fields, anyone who
      actually trusted it would likely be making a mistake...
      9cf80f2f
    • Peter Eisentraut's avatar
      Remove fmgrstamp-h business -- not needed and confusing · 1652d433
      Peter Eisentraut authored
      Add options to configure to automatically build for Kerberos
      support; no more editing of make files.
      1652d433
  4. 16 Jun, 2000 2 commits
  5. 15 Jun, 2000 8 commits
  6. 14 Jun, 2000 16 commits