1. 03 10月, 2005 4 次提交
    • B
      Remove, 8.1 completed items already removed: · 6a175779
      Bruce Momjian 提交于
      < * -Have sequence dependency track use of DEFAULT sequences
      6a175779
    • B
      Done: · 2aa39a4c
      Bruce Momjian 提交于
      < * Have sequence dependency track use of DEFAULT sequences,
      <   seqname.nextval?
      > * -Have sequence dependency track use of DEFAULT sequences
      2aa39a4c
    • T
      Expand pg_control information so that we can verify that the database · 64eea6c2
      Tom Lane 提交于
      was created on a machine with alignment rules and floating-point format
      similar to the current machine.  Per recent discussion, this seems like
      a good idea with the increasing prevalence of 32/64 bit environments.
      64eea6c2
    • T
      Change nextval and other sequence functions to specify their sequence · aa731ed8
      Tom Lane 提交于
      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
  2. 02 10月, 2005 1 次提交
    • T
      _SPI_execute_plan failed to return result tuple table to caller in · 1b61ee3c
      Tom Lane 提交于
      the ProcessUtility case, resulting in an intratransaction memory leak
      if a utility command actually did return any tuples, as reported by
      Dmitry Karasik.  Fix this and also make the behavior more consistent
      for cases involving nested SPI operations and multiple query trees,
      by ensuring that we store the state locally until it is ready to be
      returned to the caller.
      1b61ee3c
  3. 01 10月, 2005 2 次提交
  4. 30 9月, 2005 5 次提交
  5. 29 9月, 2005 7 次提交
  6. 28 9月, 2005 11 次提交
  7. 27 9月, 2005 7 次提交
  8. 26 9月, 2005 3 次提交
    • B
      Done: · 3ff1dc50
      Bruce Momjian 提交于
      < * Allow protocol-level EXECUTE that is actually a fetch to appear
      <   in the logs as a fetch rather than another execute
      3ff1dc50
    • B
      Log protocol-excute fetch operatation as fetch, rather than execute, · 72739020
      Bruce Momjian 提交于
      adjusted from a patch by Simon.
      72739020
    • B
      Add: · 88922598
      Bruce Momjian 提交于
      > * Allow protocol-level BIND parameter values to be logged
      > * Allow protocol-level EXECUTE that is actually a fetch to appear
      >   in the logs as a fetch rather than another execute
      88922598