1. 19 10月, 2002 9 次提交
  2. 18 10月, 2002 2 次提交
  3. 17 10月, 2002 5 次提交
  4. 16 10月, 2002 9 次提交
  5. 15 10月, 2002 11 次提交
  6. 14 10月, 2002 4 次提交
    • B
      - Link the entries in the table to the catalog heading · 8fc1f413
      Bruce Momjian 提交于
      - Wrap them in the <database class="table"> tags, since thats what they
      are (no markup rules for this, so it inherits from parent -- no style
      change)
      - Mention that pg_database, pg_shadow, and pg_group are global, and the
      rest are local to the specific DB. (I believe this is correct).
      
      > Works for me, though I suppose we could explain what the exceptions are
      > like in general terms.  Perhaps something like
      >
      > 'Most system catalogs are copied from the template database during
      > database creation, and are thereafter database-specific.  A few
      > catalogs are physically shared across all databases in an installation;
      > these are marked in the descriptions of the individual catalogs.'
      
      Ok, new patch.
      
      Rod Taylor
      8fc1f413
    • B
      This trivial patch fixes a bunch of spelling mistakes in the · 4c59afae
      Bruce Momjian 提交于
      contrib/dbmirror/README.dbmirror doc file.
      
      Neil Conway
      4c59afae
    • B
      As Niel so nicely pointed out this morning, the output of EXPLAIN · ac376a3e
      Bruce Momjian 提交于
      ANALYZE is not quite clear when branches of the query are never
      executed. So this tiny patch fixes that.
      
      The patch is attached and can also be found at:
      http://svana.org/kleptog/pgsql/pgsql-explain.patch
      
      Martijn van Oosterhout
      ac376a3e
    • B
      I have attached two patches as per: · 1f653ec3
      Bruce Momjian 提交于
      1) pltcl:
      Add SPI_freetuptable() calls to avoid memory leaks (Me + Neil Conway)
      Change sprintf()s to snprintf()s (Neil Conway)
      Remove header files included elsewhere (Neil Conway)
      
      2)plpython:
      Add SPI_freetuptable() calls to avoid memory leaks
      Cosemtic change to remove a compiler warning
      
      
      Notes:
      
      I have tested pltcl.c for
       a) the original leak problem reported for the repeated call of spi_exec
      in a TCL fragment
      and
       b) the subsequent report resulting from the use of spi_exec -array
      in a TCL
      fragment.
      
      The plpython.c patch is exactly the same as that applied to make
      revision 1.23,
      the plpython_schema.sql and feature.expected sections of the patch are
      also the
      same as last submited, applied and subsequently reversed out. It remains
      untested by me (other than via make check). However, this should be safe
      provided PyString_FromString() _copies_ the given string to make a
      PyObject.
      
      
      Nigel J. Andrews
      1f653ec3