1. 05 May, 2003 2 commits
  2. 04 May, 2003 4 commits
  3. 03 May, 2003 4 commits
    • Tom Lane's avatar
      Fix erroneous space calculation leading to core dump in dumpProcLangs, · 22869717
      Tom Lane authored
      per report from Olivier Prenant.  Also fix off-by-one space calculation
      in ReadToc; this woould not have hurt us until we had more than 100
      dependencies for a single object, but wrong is wrong.
      22869717
    • Barry Lind's avatar
      Patch to fix up LONGVARBINARY support submitted by Amit Gollapudi · 5295fffc
      Barry Lind authored
      (agollapudi@demandsolutions.com).
      Also applied the RefCursor support patch by Nic Ferrier.  This patch allows
      you too return a get a result set from a function that returns a refcursor.
      For example:
      call.registerOutParameter(1, Types.OTHER);
      call.execute();
      ResultSet rs = (ResultSet) call.getObject(1);
      
      Modified Files:
       	jdbc/org/postgresql/core/BaseStatement.java
       	jdbc/org/postgresql/jdbc1/AbstractJdbc1ResultSet.java
       	jdbc/org/postgresql/jdbc1/AbstractJdbc1Statement.java
       	jdbc/org/postgresql/jdbc1/Jdbc1CallableStatement.java
       	jdbc/org/postgresql/jdbc1/Jdbc1PreparedStatement.java
       	jdbc/org/postgresql/jdbc1/Jdbc1Statement.java
       	jdbc/org/postgresql/jdbc2/AbstractJdbc2ResultSet.java
       	jdbc/org/postgresql/jdbc2/Jdbc2CallableStatement.java
       	jdbc/org/postgresql/jdbc2/Jdbc2PreparedStatement.java
       	jdbc/org/postgresql/jdbc2/Jdbc2Statement.java
       	jdbc/org/postgresql/jdbc3/Jdbc3CallableStatement.java
       	jdbc/org/postgresql/jdbc3/Jdbc3PreparedStatement.java
       	jdbc/org/postgresql/jdbc3/Jdbc3Statement.java
       Added Files:
       	jdbc/org/postgresql/PGRefCursorResultSet.java
       	jdbc/org/postgresql/jdbc1/Jdbc1RefCursorResultSet.java
       	jdbc/org/postgresql/jdbc2/Jdbc2RefCursorResultSet.java
       	jdbc/org/postgresql/jdbc3/Jdbc3RefCursorResultSet.java
       	jdbc/org/postgresql/test/jdbc2/RefCursorTest.java
      5295fffc
    • Bruce Momjian's avatar
      Cleanup patch for exec() handling. · 721996d8
      Bruce Momjian authored
      721996d8
    • Bruce Momjian's avatar
  4. 02 May, 2003 7 commits
  5. 01 May, 2003 2 commits
  6. 30 Apr, 2003 1 commit
  7. 29 Apr, 2003 3 commits
  8. 28 Apr, 2003 5 commits
  9. 27 Apr, 2003 6 commits
  10. 26 Apr, 2003 4 commits
  11. 25 Apr, 2003 2 commits
    • Tom Lane's avatar
      9fdb1de3
    • Tom Lane's avatar
      In the continuing saga of FE/BE protocol revisions, add reporting of · 9cbaf721
      Tom Lane authored
      initial values and runtime changes in selected parameters.  This gets
      rid of the need for an initial 'select pg_client_encoding()' query in
      libpq, bringing us back to one message transmitted in each direction
      for a standard connection startup.  To allow server version to be sent
      using the same GUC mechanism that handles other parameters, invent the
      concept of a never-settable GUC parameter: you can 'show server_version'
      but it's not settable by any GUC input source.  Create 'lc_collate' and
      'lc_ctype' never-settable parameters so that people can find out these
      settings without need for pg_controldata.  (These side ideas were all
      discussed some time ago in pgsql-hackers, but not yet implemented.)
      9cbaf721