1. 23 Sep, 2001 7 commits
    • Bruce Momjian's avatar
      The attached patch is my first run-through of the JDBC test suite. A · b75814ae
      Bruce Momjian authored
      summary of changes:
      
       . removal of the tablename property from build.xml
      
       . addition of a dropTable method in JDBC2Tests and cleanups of many
      methods in the same
      
       . all tests now use non-deprecated assertXYZ methods instead of the
      deprecated assert method
      
       . failure in TimestampTest (testSetTimestamp) fixed. The failure is
      because testSetTimestamp was inserting a timestamp with hour 7 but
      checkTimeTest was expecting a timestamp with hour 8. AFAICS, there are
      no issues wrt daylight savings time and timestamps being pushed in and
      pulled out (but more explicit tests should be added in the future)
      
       . failure in TimeTest (testGetTime) fixed. Times to be inserted were
      interpreted in the localtime zone but checking was done with the
      assumption that the insertion was done in GMT.
      
       . formatting changes in a few of the source files (because I found
      it convenient to have consistent formatting while working on them). The
      formatting is consistent with the new format for java source files in
      PostgreSQL.
      
      Liam Stewart
      b75814ae
    • Bruce Momjian's avatar
      Update TODO list. · c7bc0ddf
      Bruce Momjian authored
      c7bc0ddf
    • Bruce Momjian's avatar
    • Bruce Momjian's avatar
      Mention LIMIT change in HISTORY file. · 75a8d118
      Bruce Momjian authored
      75a8d118
    • Bruce Momjian's avatar
      Implement TODO item: · 1aab783b
      Bruce Momjian authored
      	* Change LIMIT val,val to offset,limit to match MySQL
      
      Documentation updates too.
      1aab783b
    • Bruce Momjian's avatar
      Update anoncvs info, per Marc. · ddfdb1e3
      Bruce Momjian authored
      ddfdb1e3
    • Bruce Momjian's avatar
      Update FAQ. · c36e2b2d
      Bruce Momjian authored
      c36e2b2d
  2. 22 Sep, 2001 8 commits
  3. 21 Sep, 2001 11 commits
  4. 20 Sep, 2001 4 commits
  5. 19 Sep, 2001 5 commits
  6. 18 Sep, 2001 2 commits
    • Peter Eisentraut's avatar
      Generate index.html as the root file name of the documentation set, · 4a4abd42
      Peter Eisentraut authored
      rather than making index.html a symlink to the autogenerated name.
      Fixes fatal problems with tar programs that don't handle symlinks
      very well (MacOS X).
      
      (The names user.html, admin.html, etc. are still available as make
      targets, but they aren't packaged anymore.)
      
      Use the manifest file that the stylesheets generate as the file list
      for packaging.  Put graphics in the right place while building, not
      while packaging, so you can actually look at them after building.
      4a4abd42
    • Tom Lane's avatar
      EXPLAIN ANALYZE feature to measure and show actual runtimes and tuple · 89fa5518
      Tom Lane authored
      counts alongside the planner's estimates.  By Martijn van Oosterhout,
      with some further work by Tom Lane.
      89fa5518
  7. 17 Sep, 2001 3 commits
    • Peter Eisentraut's avatar
      Unify the zip rules and variables. · 27d2890b
      Peter Eisentraut authored
      27d2890b
    • Tom Lane's avatar
      Fix bogus failure-return value from lo_create, per report from Gavin · a839258d
      Tom Lane authored
      Sherry.  Also clean up leakage of open files and LOs in failure exits
      from lo_import and lo_export.
      a839258d
    • Bruce Momjian's avatar
      Attached is a patch that fixes ResultSetMetaData.isNullable() in · 4f63a0e1
      Bruce Momjian authored
      the JDBC driver.
      
      This method is currently unimplemented and always returns
      ResultSetMetaData.columnNullable. This is obviously incorrect
      when a column is defined with NOT NULL or PRIMARY KEY. And we
      have to think of check constraints, views, functions etc.
      
      The patch simply changes the return value to
      ResultSetMetaData.columnNullableUnknown. This is until someone
      comes up with a real implementation of course.
      
      On Fri, 14 Sep 2001 17:53:50 +0200, Tomisaw Kity?ski wrote:
      >Hello there,
      >
      >could someone tell me, please, do I have any chance to get
      >proper implementation of above method in JDBC (1.1+) soon?
      >
      >Current "return 1" works fine on most tables, however it seems
      >to be a little bit incorrect with some of them ;)
      
      Ren? Pijlman
      4f63a0e1