1. 27 11月, 2001 25 次提交
  2. 26 11月, 2001 8 次提交
    • B
      Update TODO list. · 3f122576
      Bruce Momjian 提交于
      3f122576
    • B
      Updated JDBC todo items · 59db902b
      Barry Lind 提交于
      59db902b
    • B
      Updates to JDBC doc: · f98298e2
      Barry Lind 提交于
        Editing pass over entire chapter
        Rewrote section dealing with Large Objects to also talk about bytea support
        Removed secion on Serialize functionality a we intend to remove it in the
         next release
      f98298e2
    • T
      Repair problem with listing rules that have a WHERE condition and · e5933499
      Tom Lane 提交于
      have an INSERT...SELECT as the first or only action.  Per bug report
      from Sergio Pili.
      e5933499
    • B
      This patch fixes a bug reported by Graham Leggett (minfrin@sharp.fm). · 4bc8c8dd
      Barry Lind 提交于
      The bug was that any insert or update would fail if the returned oid was
      larger than a signed int.  Since OIDs are unsigned int's it was
      a bug that the code used a java signed int to deal with the values.  The bug
      would result in the error message: "Unable to fathom update count".
      While fixing the bug, it became apparent that other code made a similar
      assumption about OIDs being signed ints.  Therefore some methods that returned
      or took OIDs are arguements also needed to be changed.
      Since we are so close to the 7.2 release I have added new methods that
      return longs and deprecated the old methods returning ints.  Therefore all
      old code should still work without requiring a code change to cast from long to int.  Also note that the methods below are PostgreSQL specific extensions to
      the JDBC api are are not part of the spec from Sun, thus it is unlikely that
      they are used much or at all.
      
      The deprecated methods are:
        ResultSet.getInsertedOID()
        Statement.getInsertedOID()
        Serialize.store()
        Connection.putObject()
      and are replaced by:
        ResultSet.getLastOID()
        Statement.getLastOID()
        Serialize.storeObject()
        Connection.storeObject()
      All the deprecated methods returned int, while their replacements return long
      
      This patch also fixes two comments in MD5Digest that the author Jeremy Wohl
      submitted.
      
      --Barry
      4bc8c8dd
    • P
      Encoding isn't necessarily multibyte · 23b5ca91
      Peter Eisentraut 提交于
      23b5ca91
    • P
      Fix comment · 6840aa36
      Peter Eisentraut 提交于
      6840aa36
    • B
      b1a40bfe
  3. 25 11月, 2001 7 次提交