1. 08 12月, 2005 5 次提交
  2. 07 12月, 2005 19 次提交
  3. 06 12月, 2005 6 次提交
  4. 05 12月, 2005 3 次提交
    • T
    • T
      Fix a rather sizable number of problems in our homegrown snprintf, such as · 3311c766
      Tom Lane 提交于
      incorrect implementation of argument reordering, arbitrary limit of output
      size for sprintf and fprintf, willingness to access more bytes than "%.Ns"
      specification allows, wrong formatting of LONGLONG_MIN, various field-padding
      bugs and omissions.  I believe it now accurately implements a subset of
      the Single Unix Spec requirements (remaining unimplemented features are
      documented, too).  Bruce Momjian and Tom Lane.
      3311c766
    • B
      Update: · 99552287
      Bruce Momjian 提交于
      < 	  Win32 API, and we have to make sure MinGW handles it.
      > 	  Win32 API, and we have to make sure MinGW handles it.  Another
      > 	  option is to wait for the MinGW project to fix it, or use the
      > 	  code from the LibGW32C project as a guide.
      99552287
  5. 04 12月, 2005 7 次提交
    • B
      Add: · 8752479d
      Bruce Momjian 提交于
      > 	o Add long file support for binary pg_dump output
      >
      > 	  While Win32 supports 64-bit files, the MinGW API does not,
      > 	  meaning we have to build an fseeko replacement on top of the
      > 	  Win32 API, and we have to make sure MinGW handles it.
      8752479d
    • B
      Add: · bedb5fc3
      Bruce Momjian 提交于
      > * Add SPI_gettypmod() to return the typemod for a TupleDesc
      bedb5fc3
    • B
      Add for autovacuum: · 49bbff0f
      Bruce Momjian 提交于
      > 	o Consider logging activity either to the logs or a system view
      49bbff0f
    • B
      Add configure flag to allow libedit to be preferred over GNU readline: · 10e3d224
      Bruce Momjian 提交于
         --with-libedit-preferred  prefer BSD Libedit over GNU Readline
      10e3d224
    • T
      Treat procedural languages as owned by the bootstrap superuser, rather · e4a9229d
      Tom Lane 提交于
      than owned by nobody.  This results in cleaner display of language ACLs,
      since the backend's aclchk.c uses the same convention.  AFAICS there is
      no practical difference but it's nice to avoid emitting SET SESSION
      AUTHORIZATION; also this will make it easier to transition pg_dump to
      some future version in which we may include an explicit ownership column
      in pg_language.  Per gripe from David Begley.
      e4a9229d
    • T
      Fix out-of-order inclusion of -L switches from LDFLAGS on AIX and HPUX. · 6d4bcda3
      Tom Lane 提交于
      Per example from Dirk Pirschel.
      6d4bcda3
    • B
      Allow to_char(interval) and to_char(time) to use AM/PM specifications. · d20901a3
      Bruce Momjian 提交于
      Map them to a single day, so '30 hours' is 'AM'.
      
      Have to_char(interval) and to_char(time) use "HH", "HH12" as 12-hour
      intervals, rather than bypass and print the full interval hours.  This
      is neeeded because to_char(time) is mapped to interval in this function.
      Intervals should use "HH24", and document suggestion.
      
      Allow "D" format specifiers for interval/time.
      d20901a3