1. 27 10月, 2000 1 次提交
  2. 13 9月, 2000 1 次提交
  3. 25 8月, 2000 1 次提交
  4. 24 8月, 2000 1 次提交
  5. 22 8月, 2000 1 次提交
  6. 06 8月, 2000 1 次提交
  7. 12 7月, 2000 1 次提交
  8. 19 6月, 2000 1 次提交
    • T
      Reimplement nodeMaterial to use a temporary BufFile (or even memory, if the · 1ee26b77
      Tom Lane 提交于
      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
  9. 18 6月, 2000 1 次提交
    • T
      Fix performance problems with pg_index lookups (see, for example, · d03a933e
      Tom Lane 提交于
      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
  10. 29 5月, 2000 1 次提交
  11. 26 1月, 2000 1 次提交
    • B
      Add: · 5c25d602
      Bruce Momjian 提交于
        * Portions Copyright (c) 1996-2000, PostgreSQL, Inc
      
      to all files copyright Regents of Berkeley.  Man, that's a lot of files.
      5c25d602
  12. 20 1月, 2000 1 次提交
    • T
      Fix handling of NULL constraint conditions: per SQL92 spec, a NULL result · 6d1efd76
      Tom Lane 提交于
      from a constraint condition does not violate the constraint (cf. discussion
      on pghackers 12/9/99).  Implemented by adding a parameter to ExecQual,
      specifying whether to return TRUE or FALSE when the qual result is
      really NULL in three-valued boolean logic.  Currently, ExecRelCheck is
      the only caller that asks for TRUE, but if we find any other places that
      have the wrong response to NULL, it'll be easy to fix them.
      6d1efd76
  13. 10 12月, 1999 1 次提交
  14. 31 10月, 1999 1 次提交
    • T
      Avoid duplicate ExecTypeFromTL() call in ExecInitJunkFilter() by passing · 5b9d655b
      Tom Lane 提交于
      in the TupleDesc that the caller already has (for call from ExecMain) or
      can make just as easily as ExecInitJunkFilter() can (for call from
      ExecAppend).  Also, don't bother to build a junk filter for an INSERT
      operation that doesn't actually need one, which is the normal case.
      5b9d655b
  15. 24 9月, 1999 1 次提交
    • T
      Several changes here, not very related but touching some of the same files. · e812458b
      Tom Lane 提交于
      * Buffer refcount cleanup (per my "progress report" to pghackers, 9/22).
      * Add links to backend PROC structs to sinval's array of per-backend info,
      and use these links for routines that need to check the state of all
      backends (rather than the slow, complicated search of the ShmemIndex
      hashtable that was used before).  Add databaseOID to PROC structs.
      * Use this to implement an interlock that prevents DESTROY DATABASE of
      a database containing running backends.  (It's a little tricky to prevent
      a concurrently-starting backend from getting in there, since the new
      backend is not able to lock anything at the time it tries to look up
      its database in pg_database.  My solution is to recheck that the DB is
      OK at the end of InitPostgres.  It may not be a 100% solution, but it's
      a lot better than no interlock at all...)
      * In ALTER TABLE RENAME, flush buffers for the relation before doing the
      rename of the physical files, to ensure we don't get failures later from
      mdblindwrt().
      * Update TRUNCATE patch so that it actually compiles against current
      sources :-(.
      You should do "make clean all" after pulling these changes.
      e812458b
  16. 18 7月, 1999 1 次提交
  17. 16 7月, 1999 1 次提交
  18. 15 7月, 1999 1 次提交
  19. 17 6月, 1999 1 次提交
  20. 26 5月, 1999 1 次提交
  21. 17 4月, 1999 1 次提交
  22. 14 2月, 1999 1 次提交
  23. 08 2月, 1999 2 次提交
  24. 28 11月, 1998 1 次提交
  25. 14 10月, 1998 1 次提交
  26. 09 10月, 1998 1 次提交
  27. 01 9月, 1998 2 次提交
  28. 28 7月, 1998 1 次提交
  29. 24 4月, 1998 1 次提交
  30. 26 2月, 1998 1 次提交
  31. 13 2月, 1998 1 次提交
  32. 10 2月, 1998 1 次提交
  33. 19 1月, 1998 1 次提交
  34. 14 1月, 1998 1 次提交
  35. 26 11月, 1997 1 次提交
  36. 21 11月, 1997 1 次提交
  37. 27 9月, 1997 1 次提交
  38. 09 9月, 1997 1 次提交