1. 05 5月, 2006 1 次提交
    • T
      Rethink the locking mechanisms used for CREATE/DROP/RENAME DATABASE. · 52667d56
      Tom Lane 提交于
      The former approach used ExclusiveLock on pg_database, which being a
      cluster-wide lock meant only one of these operations could proceed at
      a time; worse, it also blocked all incoming connections in ReverifyMyDatabase.
      Now that we have LockSharedObject(), we can use locks of different types
      applied to databases considered as objects.  This allows much more
      flexible management of the interlocking: two CREATE DATABASEs need not
      block each other, and need not block connections except to the template
      database being used.  Similarly DROP DATABASE doesn't block unrelated
      operations.  The locking used in flatfiles.c is also much narrower in
      scope than before.  Per recent proposal.
      52667d56
  2. 03 5月, 2006 2 次提交
  3. 01 5月, 2006 2 次提交
  4. 30 4月, 2006 5 次提交
  5. 27 4月, 2006 4 次提交
  6. 26 4月, 2006 4 次提交
  7. 25 4月, 2006 16 次提交
  8. 23 4月, 2006 5 次提交
    • B
      Add: · 109d0aeb
      Bruce Momjian 提交于
      < * -Eventually enable escape_string_warning and standard_conforming_strings
      > * -Enable escape_string_warning and standard_conforming_strings
      > * Make standard_conforming_strings the default in 8.3?
      >
      >   When this is done, backslash-quote should be prohibited in non-E''
      >   strings because of possible confusion over how such strings treat
      >   backslashes.  Basically, '' is always safe for a literal single
      >   quote, while \' might or might not be based on the backslash
      >   handling rules.
      >
      109d0aeb
    • B
      Removes or minimizes some documentation mentions of backward · efe3de07
      Bruce Momjian 提交于
      compatibility for release 7.2 and earlier.  I have not altered any
      mentions of release 7.3 or later.  The release notes were not modified,
      so the changes are still documented, just not in the main docs.
      efe3de07
    • B
      Update: · 044c3b46
      Bruce Momjian 提交于
      < 	o Fix psql's backslash commands more consistent
      > 	o Fix psql's \d commands more consistent
      044c3b46
    • B
      Update: · 11c41529
      Bruce Momjian 提交于
      < 	o Fix psql's \dn for various schema combinations (Neil)
      > 	o Fix psql's backslash commands more consistent
      625a626
      > 	  http://archives.postgresql.org/pgsql-hackers/2004-11/msg00014.php
      11c41529
    • B
      Update: · 0a66e482
      Bruce Momjian 提交于
              o Fix psql's \dn for various schema combinations (Neil)
      
                http://archives.postgresql.org/pgsql-hackers/2004-11/msg00014.php
      0a66e482
  9. 22 4月, 2006 1 次提交