Skip to content
Snippets Groups Projects
  1. Jul 16, 1999
  2. Jul 15, 1999
  3. Jun 19, 1999
  4. Jun 12, 1999
    • Bruce Momjian's avatar
      Reversed out Massimo patch. · 0c3281ce
      Bruce Momjian authored
      0c3281ce
    • Bruce Momjian's avatar
      I don't like last minute patches before the final freeze, but I believe that · 603e153b
      Bruce Momjian authored
      this one could be useful for people experiencing out-of-memory crashes while
      executing queries which retrieve or use a very large number of tuples.
      
      The problem happens when storage is allocated for functions results used in
      a large query, for example:
      
        select upper(name) from big_table;
        select big_table.array[1] from big_table;
        select count(upper(name)) from big_table;
      
      This patch is a dirty hack that fixes the out-of-memory problem for the most
      common cases, like the above ones. It is not the final solution for the
      problem but it can work for some people, so I'm posting it.
      
      The patch should be safe because all changes are under #ifdef. Furthermore
      the feature can be enabled or disabled at runtime by the `free_tuple_memory'
      options in the pg_options file. The option is disabled by default and must
      be explicitly enabled at runtime to have any effect.
      
      To enable the patch add the follwing line to Makefile.custom:
      
      CUSTOM_COPT += -DFREE_TUPLE_MEMORY
      
      To enable the option at runtime add the following line to pg_option:
      
      free_tuple_memory=1
      
      Massimo
      603e153b
  5. May 26, 1999
  6. May 25, 1999
  7. May 23, 1999
  8. Mar 22, 1999
    • Bruce Momjian's avatar
      Hi, · 48ea8b76
      Bruce Momjian authored
      I have solved some problems with dynamic loading on NT. It is possible
      to
      run succesfully both trigger and plpgsql regression tests. The patch is
      in
      the included file "diff".
      
                              Dan
      48ea8b76
  9. Feb 14, 1999
  10. Feb 07, 1999
  11. Feb 06, 1999
  12. Feb 03, 1999
  13. Jan 17, 1999
  14. Jan 01, 1999
  15. Sep 01, 1998
  16. Jun 15, 1998
  17. Apr 06, 1998
    • Bruce Momjian's avatar
      Hi, · 1e801a8f
      Bruce Momjian authored
      Attached you'll find a (big) patch that fixes make dep and make
      depend in all Makefiles where I found it to be appropriate.
      
      It also removes the dependency in Makefile.global for NAMEDATALEN
      and OIDNAMELEN by making backend/catalog/genbki.sh and bin/initdb/initdb.sh
      a little smarter.
      
      This no longer requires initdb.sh that is turned into initdb with
      a sed script when installing Postgres, hence initdb.sh should be
      renamed to initdb (after the patch has been applied :-) )
      
      This patch is against the 6.3 sources, as it took a while to
      complete.
      
      Please review and apply,
      
      Cheers,
      
      Jeroen van Vianen
      1e801a8f
  18. Feb 26, 1998
  19. Feb 11, 1998
  20. Dec 20, 1997
  21. Dec 19, 1997
  22. Sep 18, 1997
  23. Sep 08, 1997
  24. Sep 07, 1997
  25. Aug 25, 1997
  26. Aug 19, 1997
  27. Aug 13, 1997
  28. Nov 26, 1996
  29. Nov 24, 1996
  30. Nov 10, 1996
  31. Nov 09, 1996
  32. Nov 08, 1996
  33. Nov 06, 1996
  34. Nov 03, 1996
Loading