1. 13 Oct, 1999 6 commits
    • Bruce Momjian's avatar
      Correctly return -1 on error to CmdTuples() · c7dea3a6
      Bruce Momjian authored
      Vince.
      c7dea3a6
    • Tom Lane's avatar
      Split 'BufFile' routines out of fd.c into a new module, buffile.c. Extend · db3c4c3a
      Tom Lane authored
      BufFile so that it handles multi-segment temporary files transparently.
      This allows sorts and hashes to work with data exceeding 2Gig (or whatever
      the local limit on file size is).  Change psort.c to use relative seeks
      instead of absolute seeks for backwards scanning, so that it won't fail
      when the data volume exceeds 2Gig.
      db3c4c3a
    • Bruce Momjian's avatar
      Hi, · c3ac9f07
      Bruce Momjian authored
      I have changed a bit the makefiles for the win32 port - the *.def files
      (created when building shared libraries) are now clean from
      Makefile.shlib.
      
      I have also removed "-g" from CFLAGS in the "cygwin32" template - it can
      be
      enabled when running configure.
      
                              Dan
      c3ac9f07
    • Bruce Momjian's avatar
      Update jdbc for release version #> · 8ce829ea
      Bruce Momjian authored
      8ce829ea
    • Bruce Momjian's avatar
      Update for NUMERIC/DECIMAL data type. · e3dd4942
      Bruce Momjian authored
      e3dd4942
    • Bruce Momjian's avatar
      BLOBs containing NUL characters (ASCII 0) can be written to the · 7ee7ee13
      Bruce Momjian authored
      database, but they get truncated at the first NUL by lo_read
      when they are read back. The reason for this is that lo_read in
      Pg.xs is using the default:
          OUTPUT:
              RETVAL
              buf
      which uses C's strlen() to work out the length of the scalar.
      
      The code ought to read something more like:
          OUTPUT:
              RETVAL
              buf sv_setpvn((SV*)ST(2), buf, RETVAL);
      
      I am not sure if this needs to be done on both lo_read methods
      in this file, but I changed both and have not since had any
      problems with truncated BLOBs.
      
      Douglas Thomson <dougt@mugc.cc.monash.edu.au>
      7ee7ee13
  2. 12 Oct, 1999 12 commits
  3. 11 Oct, 1999 9 commits
  4. 10 Oct, 1999 3 commits
  5. 09 Oct, 1999 7 commits
  6. 08 Oct, 1999 3 commits