1. 14 Jun, 2000 5 commits
    • Bruce Momjian's avatar
      > If read or write fails. Position will left the same. This · a194574d
      Bruce Momjian authored
      > situation is already tracked in File routines, but a little bit
      > incorrectly.
      
      > After small survey in Linux kernel code, I am not sure about
      > it.  New patch set pos to unknown in the case of read/write
      > fails. And do lseek again.
      
      > Here is the full patch for this. This patch reduce amount of
      > lseek call ten ti mes for update statement and twenty times for
      > select statement. I tested joined up date and count(*) select
      > for table with rows > 170000 and 10 indices.  I think this is
      > worse of trying. Before lseek calls account for more than 5% o
      > f time.  Now they are 0.89 and 0.15 respectevly.
      >
      > Due to only one file modification patch should be applied in
      > src/backedn/stora ge/file/ dir.
      
      -- Sincerely Yours,
      Denis Perchine
      a194574d
    • Bruce Momjian's avatar
      Update TODO list. · 434adee6
      Bruce Momjian authored
      434adee6
    • Bruce Momjian's avatar
      autoconf · 41c4a109
      Bruce Momjian authored
      41c4a109
    • Bruce Momjian's avatar
      OK, I have tidied up todays (13th) snapshot with the attached patch, I · d1b90bfd
      Bruce Momjian authored
      have'nt r un autoconf to create a new configure, I guess that's done by
      the smapshot process, I had to remove a line from interface/odbc/
      GNUMakefile to get it to build, it was a autoconf variable that looks to
      not be used anymore, I am assuming that this is  ok.
      
      Nick Gorham
      Easysoft Ltd
      d1b90bfd
    • Bruce Momjian's avatar
      Update TODO list. · 4b3d31c9
      Bruce Momjian authored
      4b3d31c9
  2. 13 Jun, 2000 7 commits
  3. 12 Jun, 2000 11 commits
  4. 11 Jun, 2000 5 commits
  5. 10 Jun, 2000 9 commits
  6. 09 Jun, 2000 3 commits
    • Bruce Momjian's avatar
      Fix initdb spaces problem. · 7bd58b47
      Bruce Momjian authored
      7bd58b47
    • Bruce Momjian's avatar
      Add tablespaces todo item · 1d2fea9b
      Bruce Momjian authored
      1d2fea9b
    • Bruce Momjian's avatar
      This patch fixes the 0-based/1-based result set indexing problem for · d3ef7536
      Bruce Momjian authored
      absolute.  It also makes it more compliant with the interface
      specification in Sun's documentation;
      
      1. absolute(0) should throw an exception.
      2. absolute(>num-records) should set the current row to after the last
      record in addition to returning false.
      3. absolute(<num-records) should set the current row to before the first
      record in addition to returning false.
      
      These operations in the existing code just return false and don't change
      current_row.
      
      These changes required a minor change to relative(int) since it calls
      absolute(int)
      
      The attached patch is against the cvs repository tree as of this morning.
      
      Also, who is in charge of maintaining the jdbc driver?  I'm working on
      getArray for the jdbc2 driver, but it's going to require three more
      classes to be added to the driver, and thus three more source files
      in the repository.  Is there someone I can contact directly to ask about
      this?
      
      Travis Bauer | CS Grad Student | IU |www.cs.indiana.edu/~trbauer
      d3ef7536