1. 24 Oct, 1996 3 commits
    • Marc G. Fournier's avatar
      Fixes: · e1526612
      Marc G. Fournier authored
      It's bug in nodeAgg.c on lines 241, 242:
      
                      null_array = malloc(nagg);
                      for (i=0;i<nagg;i++)
                          null_array[i] = 'n';
                      oneTuple = heap_formtuple(tupType, tupValue, null_array);
      
      - your query has not only aggregates but also 'group by-ed' fields and so
      null_array should contain tupType->natts elements (tupType->natts > nagg in
      your case).
      
      Patch follows and it's very simple.
      
      VAdim
      e1526612
    • Marc G. Fournier's avatar
      Take out the PERFECT_MMGR #ifdefs: · c471d2bd
      Marc G. Fournier authored
      My guess is that the thing had bugs, and the pfree was commented out.
      The thing is probabally free'ed anyway at the end, so it was not a bad
      thing.
      
      If it does cause a bug, it will generate an error when hit, so I say
      unless someone else knows, let's remove it and run the regression test.
      
      -Bruce
      c471d2bd
    • Marc G. Fournier's avatar
      7f76072d
  2. 23 Oct, 1996 3 commits
  3. 21 Oct, 1996 12 commits
  4. 20 Oct, 1996 12 commits
  5. 19 Oct, 1996 10 commits