1. 31 Oct, 1996 14 commits
  2. 30 Oct, 1996 9 commits
  3. 29 Oct, 1996 2 commits
  4. 28 Oct, 1996 5 commits
  5. 27 Oct, 1996 1 commit
  6. 26 Oct, 1996 2 commits
  7. 25 Oct, 1996 4 commits
  8. 24 Oct, 1996 3 commits
    • Marc G. Fournier's avatar
      Fixes: Growing backend when using nested function calls · f6f8ca49
      Marc G. Fournier authored
      Submitted by: wieck@sapserv.debis.de (Jan Wieck)
      f6f8ca49
    • Marc G. Fournier's avatar
      Fixes: Errors when PQexec() in backend creates temp · 20b4c46e
      Marc G. Fournier authored
                    relations and transaction is aborted
      
      Submitted by: wieck@sapserv.debis.de (Jan Wieck)
      20b4c46e
    • 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