1. 09 6月, 2005 1 次提交
    • T
      Remove grammar productions for prefix and postfix % and ^ operators, · 77c168a8
      Tom Lane 提交于
      as well as the existing pg_catalog entries for prefix and postfix %.
      These have never been documented, though they did appear in one old
      regression test.  This avoids surprising behavior in cases like
      "SELECT -25 % -10".  Per recent discussion.
      Note: although there is a catalog change here, I did not force initdb
      since there's no harm in leaving the inaccessible entries in one's
      copy of pg_operator.
      77c168a8
  2. 08 6月, 2005 1 次提交
  3. 07 6月, 2005 8 次提交
    • B
      Fix word wrap: · b3e798d7
      Bruce Momjian 提交于
      <   changes made by the interface driver for its internal use.  One idea is
      <   for this to be a protocol-only feature.  Another approach is to notify
      <   the protocol when a RESET CONNECTION command is used.
      >   changes made by the interface driver for its internal use.  One idea
      >   is for this to be a protocol-only feature.  Another approach is to
      >   notify the protocol when a RESET CONNECTION command is used.
      b3e798d7
    • N
      Add a function lastval(), which returns the value returned by the · 657c098e
      Neil Conway 提交于
      last nextval() or setval() performed by the current session. Update the
      docs, add regression tests, and bump the catalog version. Patch from
      Dennis Björklund, various improvements by Neil Conway.
      657c098e
    • N
      Add support for an optional INTO clause to PL/PgSQL's EXECUTE command. · c59887f9
      Neil Conway 提交于
      This allows the result of executing a SELECT to be assigned to a row
      variable, record variable, or list of scalars. Docs and regression tests
      updated. Per Pavel Stehule, improvements and cleanup by Neil Conway.
      c59887f9
    • B
      Update text for RESET CONNECTION: · 0f011f6d
      Bruce Momjian 提交于
      <   all temporary tables, removal of any NOTIFYs, cursors, prepared
      <   queries(?), currval()s, etc.  This could be used for connection pooling.
      <   We could also change RESET ALL to have this functionality.
      >   temporary tables, removing any NOTIFYs, cursors, open transactions,
      >   prepared queries, currval()s, etc.  This could be used  for connection
      >   pooling.  We could also change RESET ALL to have this functionality.
      >   The difficult of this features is allowing RESET ALL to not affect
      >   changes made by the interface driver for its internal use.  One idea is
      >   for this to be a protocol-only feature.  Another approach is to notify
      >   the protocol when a RESET CONNECTION command is used.
      0f011f6d
    • B
      Add rtee box index discussion. · d7145606
      Bruce Momjian 提交于
      d7145606
    • B
      Add: · 58592150
      Bruce Momjian 提交于
      > * Fix incorrect rtree results due to wrong assumptions about "over"
      >   operator semantics [rtree]
      58592150
    • B
      Update Hungarian FAQ and add an HTML version. · 928b06a6
      Bruce Momjian 提交于
      Laszlo Hornyak
      928b06a6
    • T
      Trivial markup improvement. · 128c25b5
      Tom Lane 提交于
      128c25b5
  4. 06 6月, 2005 1 次提交
    • T
      Remove planner's private fields from Query struct, and put them into · 9ab4d981
      Tom Lane 提交于
      a new PlannerInfo struct, which is passed around instead of the bare
      Query in all the planning code.  This commit is essentially just a
      code-beautification exercise, but it does open the door to making
      larger changes to the planner data structures without having to muck
      with the widely-known Query struct.
      9ab4d981
  5. 05 6月, 2005 15 次提交
    • B
      Add description for backend termination: · 22dbd540
      Bruce Momjian 提交于
      <   cleaned up properly.  A new signal is needed for safe termination.
      >   cleaned up properly.  A new signal is needed for safe termination
      >   because backends must first do a query cancel, then exit once they
      >   have run the query cancel cleanup routine.
      22dbd540
    • B
      Here's a patch to do the following: · bebe7c56
      Bruce Momjian 提交于
      1. Rename spi_return_next to return_next.
      2. Add a new test for return_next.
      3. Update the expected output.
      4. Update the documentation.
      
      Abhijit Menon-Sen
      bebe7c56
    • B
      Add 2phase TODO.detail. · 82468b42
      Bruce Momjian 提交于
      82468b42
    • B
      Add TODO.detail for 2phase commit: · ec480a52
      Bruce Momjian 提交于
      > * Add two-phase commit [2phase]
      ec480a52
    • B
      Add TODO.detail. · efe0d080
      Bruce Momjian 提交于
      <   logs
      >   logs [pitr]
      130c130
      < * Allow a warm standby system to also allow read-only queries
      > * Allow a warm standby system to also allow read-only queries [pitr]
      efe0d080
    • B
      Remove duplicate emails. · 8805c835
      Bruce Momjian 提交于
      8805c835
    • B
      Add TODO.detail for timezone: · 3a272cf0
      Bruce Momjian 提交于
      <   information, either zone name or offset from UTC
      >   information, either zone name or offset from UTC [timezone]
      3a272cf0
    • B
      Add TODO.detail of standard timezone data type. · 32f4ae56
      Bruce Momjian 提交于
      32f4ae56
    • B
      Add pg_upgrade TODO.detail. · f54f142a
      Bruce Momjian 提交于
      f54f142a
    • B
      Add TODO.detail: · 581a8c9f
      Bruce Momjian 提交于
      > * Allow major upgrades without dump/reload, perhaps using pg_upgrade
      >   [pg_upgrade]
      581a8c9f
    • B
      Add pg_dump TODO.detail for multiple -t / -n flags. · d95fad64
      Bruce Momjian 提交于
      d95fad64
    • B
      Add pg_dump to TODO.detail. · 249880ff
      Bruce Momjian 提交于
      249880ff
    • B
      · 72c53ac3
      Bruce Momjian 提交于
      Allow kerberos name and username case sensitivity to be specified from
      postgresql.conf.
      
      ---------------------------------------------------------------------------
      
      
      Here's an updated version of the patch, with the following changes:
      
      1) No longer uses "service name" as "application version". It's instead
      hardcoded as "postgres". It could be argued that this part should be
      backpatched to 8.0, but it doesn't make a big difference until you can
      start changing it with GUC / connection parameters. This change only
      affects kerberos 5, not 4.
      
      2) Now downcases kerberos usernames when the client is running on win32.
      
      3) Adds guc option for "krb_caseins_users" to make the server ignore
      case mismatch which is required by some KDCs such as Active Directory.
      Off by default, per discussion with Tom. This change only affects
      kerberos 5, not 4.
      
      4) Updated so it doesn't conflict with the rendevouz/bonjour patch
      already in ;-)
      
      Magnus Hagander
      72c53ac3
    • B
      Add: · 3360bc13
      Bruce Momjian 提交于
      > * Allow pg_ctl to work properly with configuration files located outside
      >   the PGDATA directory
      >
      >   pg_ctl can not read the pid file because it isn't located in the
      >   config directory but in the PGDATA directory.  The solution is to
      >   allow pg_ctl to read and understand postgresql.conf to find the
      >   data_directory value.
      >
      3360bc13
    • B
      Add description: · 487990e1
      Bruce Momjian 提交于
      >
      >   O_DIRECT doesn't have the same media write guarantees as fsync, so it
      >   is in addition to the fsync method, not in place of it.
      >
      487990e1
  6. 04 6月, 2005 7 次提交
  7. 02 6月, 2005 4 次提交
  8. 31 5月, 2005 3 次提交