Skip to content
Snippets Groups Projects
  1. Aug 09, 2006
    • Bruce Momjian's avatar
      Add TODO items we don't want (Idea from Josh Berkus) · c7fa4aa3
      Bruce Momjian authored
      >
      >
      > Features We Do _Not_ Want
      > =========================
      >
      > * All backends running as threads in a single process (not want)
      >
      >   This eliminates the process protection we get from the current setup.
      >   Thread creation is usually the same overhead as process creation on
      >   modern systems, so it seems unwise to use a pure threaded model.
      >
      > * Optimizer hints (not want)
      >
      >   Optimizer hints are used to work around problems in the optimizer.  We
      >   would rather have the problems reported and fixed.
      >   http://archives.postgresql.org/pgsql-hackers/2006-08/msg00506.php
      c7fa4aa3
    • Bruce Momjian's avatar
      Update packages: · 4f81337d
      Bruce Momjian authored
      < 		  A package would be a schema with public/private variables,
      > 		  A package would be a schema with session-local variables,
      > 		  http://archives.postgresql.org/pgsql-hackers/2006-08/msg00384.php
      4f81337d
    • Bruce Momjian's avatar
      Update packages description: · baefb735
      Bruce Momjian authored
      < 		  A package would be a schema with its own variables,
      < 		  private functions, and initialization functions.  It
      > 		  A package would be a schema with public/private variables,
      > 		  public/private functions, and initialization functions.  It
      baefb735
    • Bruce Momjian's avatar
      Update packages: · bed7d5f6
      Bruce Momjian authored
      < 		  private functions, and initialization functions
      > 		  private functions, and initialization functions.  It
      > 		  is also possible to implement these capabilities
      > 		  in all schemas and not use a separate "packages"
      > 		  syntax at all.
      bed7d5f6
    • Bruce Momjian's avatar
      Update: · 7f139b81
      Bruce Momjian authored
      < 	o COPY FROM STDIN not implemented because not useful?
      > 	o Implement COPY FROM STDIN
      7f139b81
  2. Aug 08, 2006
  3. Aug 06, 2006
    • Tom Lane's avatar
      Add support for forcing a switch to a new xlog file; cause such a switch · 704ddaaa
      Tom Lane authored
      to happen automatically during pg_stop_backup().  Add some functions for
      interrogating the current xlog insertion point and for easily extracting
      WAL filenames from the hex WAL locations displayed by pg_stop_backup
      and friends.  Simon Riggs with some editorialization by Tom Lane.
      704ddaaa
  4. Aug 04, 2006
  5. Aug 03, 2006
    • Tom Lane's avatar
      Cause ALTER TABLE to perform ALTER COLUMN DROP DEFAULT operations during · 7946f772
      Tom Lane authored
      the DROP pass rather than the ADD_CONSTR pass.  On examining the code I
      think this was just an oversight rather than intentional, and it seems
      to satisfy the principle of least surprise better than the alternative
      solution that was discussed.  Add an example to the ref page showing how
      to do ALTER TYPE and update the default in one command.  Per gripe from
      Markus Bertheau that that wasn't possible.
      7946f772
  6. Aug 02, 2006
  7. Aug 01, 2006
  8. Jul 31, 2006
    • Tom Lane's avatar
      Change the relation_open protocol so that we obtain lock on a relation · 09d3670d
      Tom Lane authored
      (table or index) before trying to open its relcache entry.  This fixes
      race conditions in which someone else commits a change to the relation's
      catalog entries while we are in process of doing relcache load.  Problems
      of that ilk have been reported sporadically for years, but it was not
      really practical to fix until recently --- for instance, the recent
      addition of WAL-log support for in-place updates helped.
      
      Along the way, remove pg_am.amconcurrent: all AMs are now expected to support
      concurrent update.
      09d3670d
    • Tom Lane's avatar
      Change the bootstrap sequence so that toast tables for system catalogs are · 6e38e34d
      Tom Lane authored
      created in the bootstrap phase proper, rather than added after-the-fact
      by initdb.  This is cleaner than before because it allows us to retire the
      undocumented ALTER TABLE ... CREATE TOAST TABLE command, but the real reason
      I'm doing it is so that toast tables of shared catalogs will now have
      predetermined OIDs.  This will allow a reasonably clean solution to the
      problem of locking tables before we load their relcache entries, to appear
      in a forthcoming patch.
      6e38e34d
    • Alvaro Herrera's avatar
  9. Jul 30, 2006
    • Bruce Momjian's avatar
      Add: · d6603791
      Bruce Momjian authored
      > * Consider detoasting keys before sorting
      d6603791
  10. Jul 29, 2006
  11. Jul 28, 2006
Loading