1. 23 Sep, 2001 5 commits
  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 5 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
    • Bruce Momjian's avatar
      I'm attaching a patch which fixes the corruption in strings caused · 6e63468f
      Bruce Momjian authored
      by escape processing in the SQL statement. I've tested this for a
      while now and it appears to work well. Previously string data
      with {d was getting corrupt as the {d was being stripped regardless
      of whether it was an escape code or not.
      
      I also added checking for time and timestamp escape processing strings
      as per 11.3 in the specification. The patch is against the latest
      CVS.
      
      Thomas O'Dowd
      6e63468f
    • Hiroshi Inoue's avatar
      c6cb8701