1. 19 2月, 2003 1 次提交
  2. 18 2月, 2003 12 次提交
    • B
      Add: · f8247a76
      Bruce Momjian 提交于
      > * Allow WAL information to recover corrupted pg_controldata
      f8247a76
    • B
      Update German FAQ, from Ian Barwick. · cdbe5f62
      Bruce Momjian 提交于
      cdbe5f62
    • B
      *** empty log message *** · f3ad24ef
      Bruce Momjian 提交于
      f3ad24ef
    • B
      Update changes from Ian Barwick. · 9c1d2d66
      Bruce Momjian 提交于
      9c1d2d66
    • B
      Add: · 44ddef3b
      Bruce Momjian 提交于
      > * Allow pg_dump to dump sequences using NO_MAXVALUE and NO_MINVALUE
      44ddef3b
    • B
      Add: · bb402a0e
      Bruce Momjian 提交于
      > * Add a script to ask system configuration questions and tune postgresql.conf
      bb402a0e
    • B
      Add: · cf55ee57
      Bruce Momjian 提交于
      > * Allow CIDR format to be used in pg_hba.conf
      cf55ee57
    • B
      Update marks: · a8ed5dc0
      Bruce Momjian 提交于
      < 	o Allow CLUSTER to cluster all tables (Alvaro Herrera)
      > 	o -Allow CLUSTER to cluster all tables (Alvaro Herrera)
      243c243
      < * Allow pg_dump to dump a specific schema (Neil Conway)
      > * -Allow pg_dump to dump a specific schema (Neil Conway)
      398c398
      < * Make IN/NOT IN have similar performance to EXISTS/NOT EXISTS (Tom)
      > * -Make IN/NOT IN have similar performance to EXISTS/NOT EXISTS (Tom)
      a8ed5dc0
    • B
      Remove IN/EXISTS TODO.detail item. · fa4574e3
      Bruce Momjian 提交于
      fa4574e3
    • B
      Mark as done: · 4ba4b4a6
      Bruce Momjian 提交于
      > 	o -Add ALTER TABLE tab SET WITHOUT OIDS (Rod)
      
      > 	o -Allow CLUSTER to cluster all tables (Alvaro Herrera)
      
      > * -Allow pg_dump to dump a specific schema (Neil Conway)
      
      > * -Make IN/NOT IN have similar performance to EXISTS/NOT EXISTS (Tom)
      
      > * Rod is Rod Taylor <pg@rbt.ca)>
      4ba4b4a6
    • B
      Update: · 92a7ef9d
      Bruce Momjian 提交于
      < * -Make a transaction-safe TRUNCATE
      > * -Make a transaction-safe TRUNCATE (Rod)
      92a7ef9d
    • B
      Done: · 52d0feec
      Bruce Momjian 提交于
      > * -Make a transaction-safe TRUNCATE
      52d0feec
  3. 16 2月, 2003 3 次提交
    • T
      COALESCE() and NULLIF() are now first-class expressions, not macros · 51972a9d
      Tom Lane 提交于
      that turn into CASE expressions.  They evaluate their arguments at most
      once.  Patch by Kris Jurka, review and (very light) editorializing by me.
      51972a9d
    • B
      Update wording: · de25638d
      Bruce Momjian 提交于
      < * Disallow DROP COLUMN on a column that is part of a multi-column index
      > * Require DROP COLUMN CASCADE for a column that is part of a multi-column index
      de25638d
    • B
      Add: · 50c4190e
      Bruce Momjian 提交于
      > * Disallow DROP COLUMN on a column that is part of a multi-column index
      50c4190e
  4. 15 2月, 2003 1 次提交
    • B
      Add: · 37664ee4
      Bruce Momjian 提交于
      > * Allow incremental backups
      37664ee4
  5. 14 2月, 2003 9 次提交
  6. 13 2月, 2003 6 次提交
    • B
      29e57ce3
    • B
      This patch fixes an error in the usage message for 'clusterdb', and · 0064031f
      Bruce Momjian 提交于
      makes a few editorial changes to the documentation.
      
      
      Neil Conway
      0064031f
    • B
      > > They work the same as table constraints with in-line declaration (no · 0845b6f3
      Bruce Momjian 提交于
      > > comma).
      >
      > OK. But the documentation implies there is a comma, so it should probably
      > get chenged then.
      
      Yes, it should. (attached)
      
      [ Backpatched to 7.3.X too.]
      
      Rod Taylor
      0845b6f3
    • B
      The "random" regression test uses a function called oidrand(), which · 6cb1f4fe
      Bruce Momjian 提交于
      takes two parameters, an OID x and an integer y, and returns "true" with
      probability 1/y (the OID argument is ignored). This can be useful -- for
      example, it can be used to select a random sampling of the rows in a
      table (which is what the "random" regression test uses it for).
      
      This patch removes that function, because it was old and messy. The old
      function had the following problems:
      
      - it was undocumented
      
      - it was poorly named
      
      - it was designed to workaround an optimizer bug that no longer exists
      (the OID argument is to ensure that the optimizer won't optimize away
      calls to the function; AFAIK marking the function as 'volatile' suffices
      nowadays)
      
      - it used a different random-number generation technique than the other
      PSRNG-related functions in the backend do (it called random() like they
      do, but it had its own logic for setting a set and deciding when to
      reseed the RNG).
      
      Ok, this patch removes oidrand(), oidsrand(), and userfntest(), and
      improves the SGML docs a little bit (un-commenting the setseed()
      documentation).
      
      Neil Conway
      6cb1f4fe
    • B
      Code for WITHOUT OIDS. · 8195f8f0
      Bruce Momjian 提交于
      
      On Wed, 2003-01-08 at 21:59, Christopher Kings-Lynne wrote:
      > I agree.  I want to remove OIDs from heaps of our tables when we go to 7.3.
      > I'd rather not have to do it in the dump due to down time.
      
      
      Rod Taylor <rbt@rbt.ca>
      8195f8f0
    • B
      [ dumping schemas ] · 2bd63117
      Bruce Momjian 提交于
      > I don't care what you use for short options if all useful ones are taken.
      > But the long option should be --schema.
      
      Ok, fair enough: a revised patch is attached that uses the '-n' short
      option and the '--schema' long option.
      
      Neil Conway
      2bd63117
  7. 12 2月, 2003 2 次提交
    • B
      Done in 7.3.2, so removed: · e2b58f76
      Bruce Momjian 提交于
      < * Fix SELECT ... INTO and CREATE TABLE AS to have appopriate OID column
      e2b58f76
    • B
      Done: · 0550c7a6
      Bruce Momjian 提交于
      > * -Get faster regex() code from Henry Spencer <henry@zoo.utoronto.ca>
      0550c7a6
  8. 09 2月, 2003 2 次提交
  9. 07 2月, 2003 1 次提交
    • T
      Create a GUC variable REGEX_FLAVOR to control the type of regular · 77ede890
      Tom Lane 提交于
      expression accepted by the regex operators, per discussion yesterday.
      
      Along the way, reduce deadlock_timeout from PGC_POSTMASTER to PGC_SIGHUP
      category.  It is probably best to insist that all backends share the same
      setting, but that doesn't mean it has to be frozen at startup.
      77ede890
  10. 06 2月, 2003 1 次提交
  11. 04 2月, 2003 2 次提交