1. 29 7月, 2005 4 次提交
  2. 27 7月, 2005 3 次提交
  3. 26 7月, 2005 2 次提交
  4. 25 7月, 2005 2 次提交
    • B
      Add: · 9ad9e694
      Bruce Momjian 提交于
      > 	o Allow postgresql.conf file values to be changed via an SQL API
      > 	o Allow the server to be stopped/restarted via an SQL API
      9ad9e694
    • T
      With the interval/day patch, the horology regression test no longer · 4c80071b
      Tom Lane 提交于
      fails near DST transition days, so remove the advice about that testing
      problem.  Also improve the description of variant-comparison-file
      selection.
      4c80071b
  5. 24 7月, 2005 1 次提交
  6. 23 7月, 2005 1 次提交
  7. 21 7月, 2005 3 次提交
  8. 19 7月, 2005 3 次提交
  9. 16 7月, 2005 1 次提交
  10. 14 7月, 2005 3 次提交
  11. 13 7月, 2005 1 次提交
  12. 11 7月, 2005 1 次提交
    • T
      Change typreceive function API so that receive functions get the same · d78397d3
      Tom Lane 提交于
      optional arguments as text input functions, ie, typioparam OID and
      atttypmod.  Make all the datatypes that use typmod enforce it the same
      way in typreceive as they do in typinput.  This fixes a problem with
      failure to enforce length restrictions during COPY FROM BINARY.
      d78397d3
  13. 10 7月, 2005 4 次提交
    • B
      Add --encoding to pg_dump. · d1cffe2f
      Bruce Momjian 提交于
      The Problem:  Occassionally a DBA needs to dump a database to a new
      encoding.   In instances where the current encoding, (or lack of an
      encoding, like SQL_ASCII) is poorly supported on the target  database
      server, it can be useful to dump into a particular  encoding.  But,
      currently the only way to set the encoding of  a pg_dump file is to
      change  client_encoding in postgresql.conf and restart postmaster.
      This is more  than a little awkward for production systems.
      
      Magnus Hagander
      d1cffe2f
    • B
      Update. · 42e7b0f0
      Bruce Momjian 提交于
      < 	  computations should adjust based on the time zone rules, e.g.
      < 	  adding 24 hours to a timestamp would yield a different result from
      < 	  adding one day.
      <
      > 	  computations should adjust based on the time zone rules.
      42e7b0f0
    • B
      I made the patch that implements regexp_replace again. · 75a64eeb
      Bruce Momjian 提交于
      The specification of this function is as follows.
      
      regexp_replace(source text, pattern text, replacement text, [flags
      text])
      returns text
      
      Replace string that matches to regular expression in source text to
      replacement text.
      
       - pattern is regular expression pattern.
       - replacement is replace string that can use '\1'-'\9', and '\&'.
          '\1'-'\9': back reference to the n'th subexpression.
          '\&'     : entire matched string.
       - flags can use the following values:
          g: global (replace all)
          i: ignore case
          When the flags is not specified, case sensitive, replace the first
          instance only.
      
      Atsushi Ogawa
      75a64eeb
    • B
      Add psql \pset numericsep to allow output numbers like 100,000.0 or · 73a7c322
      Bruce Momjian 提交于
      100.000,0.
      
      Eugen Nedelcu
      73a7c322
  14. 08 7月, 2005 3 次提交
    • B
      Done: · a4ffa382
      Bruce Momjian 提交于
      > * -Prevent dropping user that still owns objects, or auto-drop the objects
      a4ffa382
    • T
      Track dependencies on shared objects (which is to say, roles; we already · 59d1b3d9
      Tom Lane 提交于
      have adequate mechanisms for tracking the contents of databases and
      tablespaces).  This solves the longstanding problem that you can drop a
      user who still owns objects and/or has access permissions.
      Alvaro Herrera, with some kibitzing from Tom Lane.
      59d1b3d9
    • B
      Update: · 442b59dd
      Bruce Momjian 提交于
      < 	   writer.
      > 	   writer.  It might cause problems for applying WAL on recovery
      > 	   into a partially-written page, but later the full page will be
      > 	   replaced from WAL.
      442b59dd
  15. 07 7月, 2005 3 次提交
    • B
      Update: · f0a2a919
      Bruce Momjian 提交于
      >
      > 	o  -Add ability to turn off full page writes
      > 	o  When off, write CRC to WAL and check file system blocks
      > 	   on recovery
      > 	o  Write full pages during file system write and not when
      > 	   the page is modified in the buffer cache
      >
      > 	   This allows most full page writes to happen in the background
      > 	   writer.
      f0a2a919
    • B
      Reverse out because the lack of using pgport in timezone/ is causing · 261ffd03
      Bruce Momjian 提交于
      problems:
      
      ---------------------------------------------------------------------------
      
      Support cross compilation by compiling "zic" with a native compiler.
      This relies on the output of zic being platform independent, but that is
      currently the case.
      261ffd03
    • B
      Add pg_column_size() to return storage size of a column, including · a9236028
      Bruce Momjian 提交于
      possible compression.
      
      Mark Kirkwood
      a9236028
  16. 06 7月, 2005 5 次提交