1. 26 4月, 2006 3 次提交
  2. 25 4月, 2006 16 次提交
  3. 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
  4. 22 4月, 2006 2 次提交
    • B
      Suggest Win32 users user E'' strings and double backslashes used for · 9d483b7b
      Bruce Momjian 提交于
      patch separators in COPY.
      
      Backpatch doubleing backslashes suggestion to 8.1.
      9d483b7b
    • B
      Remove from TODO ability to edit pg_hba.conf, but add GRANT connection · 1b4504ce
      Bruce Momjian 提交于
      permission item:
      
      < 	o %Allow pg_hba.conf settings to be controlled via SQL
      > 	o %Allow per-database permissions to be set via GRANT
      < 	  This would add a function to load the SQL table from
      <           pg_hba.conf, and one to writes its contents to the flat file.
      < 	  The table should have a line number that is a float so rows
      < 	  can be inserted between existing rows, e.g. row 2.5 goes
      < 	  between row 2 and row 3.
      > 	  Allow database connection checks based on GRANT rules in
      > 	  addition to the existing access checks in pg_hba.conf.
      1b4504ce
  5. 20 4月, 2006 2 次提交
    • B
      Add detail: · 19fe9a90
      Bruce Momjian 提交于
      < 	  encoding.
      > 	  encoding.  This requires using mblen() to determine if the
      > 	  backslash is inside or outside a multi-byte sequence.
      19fe9a90
    • B
      Add: · ce8c6aa7
      Bruce Momjian 提交于
      >
      > 	o Add new version of PQescapeString() that doesn't double backslashes
      > 	  that are part of a client-only multibyte sequence
      >
      > 	  Single-quote is not a valid byte in any supported client-only
      > 	  encoding.
      >
      > 	o Add new version of PQescapeString() that doesn't double
      > 	  backslashes when standard_conforming_strings is true and
      > 	  non-E strings are used
      ce8c6aa7
  6. 19 4月, 2006 2 次提交
  7. 18 4月, 2006 2 次提交
  8. 17 4月, 2006 1 次提交
    • B
      Done: · 8e7aaeb6
      Bruce Momjian 提交于
      < 	o Update pg_dump and psql to use the new COPY libpq API (Christopher)
      > 	o -Update pg_dump and psql to use the new COPY libpq API (Christopher)
      8e7aaeb6
  9. 16 4月, 2006 3 次提交
    • B
      Remove: · 922f7536
      Bruce Momjian 提交于
      < 	o %Have pg_dump use multi-statement transactions for INSERT dumps
      922f7536
    • B
      Document that pg_dump -d/-D prevents invalid data from canceling the · 598dfee5
      Bruce Momjian 提交于
      entire table load.
      598dfee5
    • T
      Support the syntax · 3651a3e6
      Tom Lane 提交于
      	CREATE AGGREGATE aggname (input_type) (parameter_list)
      along with the old syntax where the input type was named in the parameter
      list.  This fits more naturally with the way that the aggregate is identified
      in DROP AGGREGATE and other utility commands; furthermore it has a natural
      extension to handle multiple-input aggregates, where the basetype-parameter
      method would get ugly.  In fact, this commit fixes the grammar and all the
      utility commands to support multiple-input aggregates; but DefineAggregate
      rejects it because the executor isn't fixed yet.
      I didn't do anything about treating agg(*) as a zero-input aggregate instead
      of artificially making it a one-input aggregate, but that should be considered
      in combination with supporting multi-input aggregates.
      3651a3e6
  10. 15 4月, 2006 1 次提交
    • B
      Done: · ebd5257d
      Bruce Momjian 提交于
      > * -Re-enable the GUC full_page_writes in 8.2 when reliability issues have
      ebd5257d
  11. 13 4月, 2006 3 次提交