1. 23 Sep, 2002 3 commits
    • Bruce Momjian's avatar
      Obviously noone has ever tested the doubling of availiable result ids · f9a1ea6f
      Bruce Momjian authored
      up to
      reaching the hard limit. After opening 16(=current REST_START value)
      results via pg_exec, the next pg_exec tries to find an empty slot
      forever :-( . In PgSetResultId file pgtclId.c in the for loop there
      has to be done a break, if res_max ist reached. The piece of code
      should look like
              if (resid == connid->res_max)
              {
                  resid = 0;
                  break;   /* the break as to be added */
              }
      
      now everything works (double available results after reaching
      RES_START up to reaching RES_HARD_MAX)
      
      Gerhard Hintermayer
      f9a1ea6f
    • Bruce Momjian's avatar
      Nothing. · 28161419
      Bruce Momjian authored
      28161419
    • Tom Lane's avatar
      Get rid of bogus use of heap_mark4update in reindex operations (cf. · bc1088c2
      Tom Lane authored
      recent bug report).  Fix processing of nailed-in-cache indexes;
      it appears that REINDEX DATABASE has been broken for months :-(.
      bc1088c2
  2. 22 Sep, 2002 14 commits
  3. 21 Sep, 2002 4 commits
  4. 20 Sep, 2002 19 commits