1. 31 10月, 1996 14 次提交
  2. 30 10月, 1996 10 次提交
  3. 29 10月, 1996 2 次提交
  4. 28 10月, 1996 3 次提交
  5. 27 10月, 1996 1 次提交
  6. 26 10月, 1996 2 次提交
  7. 25 10月, 1996 4 次提交
  8. 24 10月, 1996 4 次提交
    • M
      Fixes: Growing backend when using nested function calls · f6f8ca49
      Marc G. Fournier 提交于
      Submitted by: wieck@sapserv.debis.de (Jan Wieck)
      f6f8ca49
    • M
      Fixes: Errors when PQexec() in backend creates temp · 20b4c46e
      Marc G. Fournier 提交于
                    relations and transaction is aborted
      
      Submitted by: wieck@sapserv.debis.de (Jan Wieck)
      20b4c46e
    • M
      Fixes: · e1526612
      Marc G. Fournier 提交于
      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
    • M
      Take out the PERFECT_MMGR #ifdefs: · c471d2bd
      Marc G. Fournier 提交于
      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